File Info

Filename
.command.sh
Full Path
s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/4b/c142f478b2cd3a1c56b7257947eda6/.command.sh
Size
692 bytes
Attempt
#!/bin/bash -euo pipefail
[ ! -f  dna_s738_1.fastq.gz ] && ln -sf dna_s738_R1.fastq.gz dna_s738_1.fastq.gz
[ ! -f  dna_s738_2.fastq.gz ] && ln -sf dna_s738_R2.fastq.gz dna_s738_2.fastq.gz
fastp \
    --in1 dna_s738_1.fastq.gz \
    --in2 dna_s738_2.fastq.gz \
    --out1 dna_s738_1.fastp.fastq.gz \
    --out2 dna_s738_2.fastp.fastq.gz \
    --json dna_s738.fastp.json \
    --html dna_s738.fastp.html \
     \
     \
     \
    --thread 12 \
    --detect_adapter_for_pe \
    --reads_to_process 300000000  \
    2> dna_s738.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