File Info

Filename
.command.sh
Full Path
s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/92/f400a8399f5430f8a9676b30f9d8f2/.command.sh
Size
1.0 KB
Attempt
#!/bin/bash -euo pipefail
[ ! -f  FFPE_V4_0002_RNA_0001_B23MVV7LT4_1_1.fastq.gz ] && ln -sf FFPE_V4_0002_RNA_0001_B23MVV7LT4_1_R1.fastq.gz FFPE_V4_0002_RNA_0001_B23MVV7LT4_1_1.fastq.gz
[ ! -f  FFPE_V4_0002_RNA_0001_B23MVV7LT4_1_2.fastq.gz ] && ln -sf FFPE_V4_0002_RNA_0001_B23MVV7LT4_1_R2.fastq.gz FFPE_V4_0002_RNA_0001_B23MVV7LT4_1_2.fastq.gz
fastp \
    --in1 FFPE_V4_0002_RNA_0001_B23MVV7LT4_1_1.fastq.gz \
    --in2 FFPE_V4_0002_RNA_0001_B23MVV7LT4_1_2.fastq.gz \
    --out1 FFPE_V4_0002_RNA_0001_B23MVV7LT4_1_1.fastp.fastq.gz \
    --out2 FFPE_V4_0002_RNA_0001_B23MVV7LT4_1_2.fastp.fastq.gz \
    --json FFPE_V4_0002_RNA_0001_B23MVV7LT4_1.fastp.json \
    --html FFPE_V4_0002_RNA_0001_B23MVV7LT4_1.fastp.html \
     \
     \
     \
    --thread 12 \
    --detect_adapter_for_pe \
    --reads_to_process 300000000  \
    2> FFPE_V4_0002_RNA_0001_B23MVV7LT4_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