File Info

Filename
.command.sh
Full Path
s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/ef/c3153999206ca25bea600e4c059ce0/.command.sh
Size
978 bytes
Attempt
#!/bin/bash -euo pipefail
[ ! -f  V4_0001_RNA_0005_23H5VFLT4_s09_1.fastq.gz ] && ln -sf V4_0001_RNA_0005_23H5VFLT4_s09_R1.fastq.gz V4_0001_RNA_0005_23H5VFLT4_s09_1.fastq.gz
[ ! -f  V4_0001_RNA_0005_23H5VFLT4_s09_2.fastq.gz ] && ln -sf V4_0001_RNA_0005_23H5VFLT4_s09_R2.fastq.gz V4_0001_RNA_0005_23H5VFLT4_s09_2.fastq.gz
fastp \
    --in1 V4_0001_RNA_0005_23H5VFLT4_s09_1.fastq.gz \
    --in2 V4_0001_RNA_0005_23H5VFLT4_s09_2.fastq.gz \
    --out1 V4_0001_RNA_0005_23H5VFLT4_s09_1.fastp.fastq.gz \
    --out2 V4_0001_RNA_0005_23H5VFLT4_s09_2.fastp.fastq.gz \
    --json V4_0001_RNA_0005_23H5VFLT4_s09.fastp.json \
    --html V4_0001_RNA_0005_23H5VFLT4_s09.fastp.html \
     \
     \
     \
    --thread 12 \
    --detect_adapter_for_pe \
    --reads_to_process 300000000  \
    2> V4_0001_RNA_0005_23H5VFLT4_s09.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