File Info

Filename
.command.sh
Full Path
s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a4/8f1197d908c8d13b278fae6d1f86c4/.command.sh
Size
1004 bytes
Attempt
#!/bin/bash -euo pipefail
[ ! -f  SW780_FFPE_RNA_0001_B23LG7FLT4_3_1.fastq.gz ] && ln -sf SW780_FFPE_RNA_0001_B23LG7FLT4_3_R1.fastq.gz SW780_FFPE_RNA_0001_B23LG7FLT4_3_1.fastq.gz
[ ! -f  SW780_FFPE_RNA_0001_B23LG7FLT4_3_2.fastq.gz ] && ln -sf SW780_FFPE_RNA_0001_B23LG7FLT4_3_R2.fastq.gz SW780_FFPE_RNA_0001_B23LG7FLT4_3_2.fastq.gz
fastp \
    --in1 SW780_FFPE_RNA_0001_B23LG7FLT4_3_1.fastq.gz \
    --in2 SW780_FFPE_RNA_0001_B23LG7FLT4_3_2.fastq.gz \
    --out1 SW780_FFPE_RNA_0001_B23LG7FLT4_3_1.fastp.fastq.gz \
    --out2 SW780_FFPE_RNA_0001_B23LG7FLT4_3_2.fastp.fastq.gz \
    --json SW780_FFPE_RNA_0001_B23LG7FLT4_3.fastp.json \
    --html SW780_FFPE_RNA_0001_B23LG7FLT4_3.fastp.html \
     \
     \
     \
    --thread 12 \
    --detect_adapter_for_pe \
    --reads_to_process 300000000  \
    2> SW780_FFPE_RNA_0001_B23LG7FLT4_3.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