File Info

Filename
.command.sh
Full Path
s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/73/0dcc2fe0965778efed6fd15e9ee86e/.command.sh
Size
991 bytes
Attempt
#!/bin/bash -euo pipefail
[ ! -f  MCF7_FFPE_RNA_0001_B23LG7FLT4_1_1.fastq.gz ] && ln -sf MCF7_FFPE_RNA_0001_B23LG7FLT4_1_R1.fastq.gz MCF7_FFPE_RNA_0001_B23LG7FLT4_1_1.fastq.gz
[ ! -f  MCF7_FFPE_RNA_0001_B23LG7FLT4_1_2.fastq.gz ] && ln -sf MCF7_FFPE_RNA_0001_B23LG7FLT4_1_R2.fastq.gz MCF7_FFPE_RNA_0001_B23LG7FLT4_1_2.fastq.gz
fastp \
    --in1 MCF7_FFPE_RNA_0001_B23LG7FLT4_1_1.fastq.gz \
    --in2 MCF7_FFPE_RNA_0001_B23LG7FLT4_1_2.fastq.gz \
    --out1 MCF7_FFPE_RNA_0001_B23LG7FLT4_1_1.fastp.fastq.gz \
    --out2 MCF7_FFPE_RNA_0001_B23LG7FLT4_1_2.fastp.fastq.gz \
    --json MCF7_FFPE_RNA_0001_B23LG7FLT4_1.fastp.json \
    --html MCF7_FFPE_RNA_0001_B23LG7FLT4_1.fastp.html \
     \
     \
     \
    --thread 12 \
    --detect_adapter_for_pe \
    --reads_to_process 300000000  \
    2> MCF7_FFPE_RNA_0001_B23LG7FLT4_1.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