File Info

Filename
.command.sh
Full Path
s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/79/5215cf65a73bda1cd5f04d385f41d2/.command.sh
Size
978 bytes
Attempt
#!/bin/bash -euo pipefail
[ ! -f  V4_0001_RNA_0005_23H5VFLT4_s33_1.fastq.gz ] && ln -sf V4_0001_RNA_0005_23H5VFLT4_s33_R1.fastq.gz V4_0001_RNA_0005_23H5VFLT4_s33_1.fastq.gz
[ ! -f  V4_0001_RNA_0005_23H5VFLT4_s33_2.fastq.gz ] && ln -sf V4_0001_RNA_0005_23H5VFLT4_s33_R2.fastq.gz V4_0001_RNA_0005_23H5VFLT4_s33_2.fastq.gz
fastp \
    --in1 V4_0001_RNA_0005_23H5VFLT4_s33_1.fastq.gz \
    --in2 V4_0001_RNA_0005_23H5VFLT4_s33_2.fastq.gz \
    --out1 V4_0001_RNA_0005_23H5VFLT4_s33_1.fastp.fastq.gz \
    --out2 V4_0001_RNA_0005_23H5VFLT4_s33_2.fastp.fastq.gz \
    --json V4_0001_RNA_0005_23H5VFLT4_s33.fastp.json \
    --html V4_0001_RNA_0005_23H5VFLT4_s33.fastp.html \
     \
     \
     \
    --thread 12 \
    --detect_adapter_for_pe \
    --reads_to_process 300000000  \
    2> V4_0001_RNA_0005_23H5VFLT4_s33.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