File Info

Filename
.command.sh
Full Path
s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1c/d404db4d8b0a7d0591edf39ea106c3/.command.sh
Size
1017 bytes
Attempt
#!/bin/bash -euo pipefail
[ ! -f  HD789_0002_RNA_0008_23H5VFLT4_s19_1.fastq.gz ] && ln -sf HD789_0002_RNA_0008_23H5VFLT4_s19_R1.fastq.gz HD789_0002_RNA_0008_23H5VFLT4_s19_1.fastq.gz
[ ! -f  HD789_0002_RNA_0008_23H5VFLT4_s19_2.fastq.gz ] && ln -sf HD789_0002_RNA_0008_23H5VFLT4_s19_R2.fastq.gz HD789_0002_RNA_0008_23H5VFLT4_s19_2.fastq.gz
fastp \
    --in1 HD789_0002_RNA_0008_23H5VFLT4_s19_1.fastq.gz \
    --in2 HD789_0002_RNA_0008_23H5VFLT4_s19_2.fastq.gz \
    --out1 HD789_0002_RNA_0008_23H5VFLT4_s19_1.fastp.fastq.gz \
    --out2 HD789_0002_RNA_0008_23H5VFLT4_s19_2.fastp.fastq.gz \
    --json HD789_0002_RNA_0008_23H5VFLT4_s19.fastp.json \
    --html HD789_0002_RNA_0008_23H5VFLT4_s19.fastp.html \
     \
     \
     \
    --thread 12 \
    --detect_adapter_for_pe \
    --reads_to_process 300000000  \
    2> HD789_0002_RNA_0008_23H5VFLT4_s19.fastp.log

cat <<-END_VERSIONS > versions.yml
"NFCORE_RNAFUSION:RNAFUSION:TRIM_WORKFLOW:FASTP":
    fastp: $(fastp --version 2>&1 | sed -e "s/fastp //g")
END_VERSIONS