File Info

Filename
.command.sh
Full Path
s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/6e/cfcf3ba0d5130671006f9c71c710f6/.command.sh
Size
653 bytes
Attempt
#!/bin/bash -euo pipefail
printf "%s %s\n" A549_FFPE_01_RNA_0001_B23LG7FLT4_3_1.fastp.fastq.gz A549_FFPE_01_RNA_0001_B23LG7FLT4_3_trimmed_1.gz A549_FFPE_01_RNA_0001_B23LG7FLT4_3_2.fastp.fastq.gz A549_FFPE_01_RNA_0001_B23LG7FLT4_3_trimmed_2.gz | while read old_name new_name; do
    [ -f "${new_name}" ] || ln -s $old_name $new_name
done

fastqc \
    --quiet \
    --threads 2 \
    A549_FFPE_01_RNA_0001_B23LG7FLT4_3_trimmed_1.gz A549_FFPE_01_RNA_0001_B23LG7FLT4_3_trimmed_2.gz

cat <<-END_VERSIONS > versions.yml
"NFCORE_RNAFUSION:RNAFUSION:TRIM_WORKFLOW:FASTQC_FOR_FASTP":
    fastqc: $( fastqc --version | sed '/FastQC v/!d; s/.*v//' )
END_VERSIONS