File Info

Filename
.command.sh
Full Path
s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/1b/56cd8447b19fd7b1d4202ce3d6f102/.command.sh
Size
581 bytes
Attempt
#!/bin/bash -euo pipefail
printf "%s %s\n" aih-tih-sc-e08fa3-R1_A23YTGFLT4_1_R1.fastq.gz aih-tih-sc-e08fa3-R1_A23YTGFLT4_1_1.gz aih-tih-sc-e08fa3-R1_A23YTGFLT4_1_R2.fastq.gz aih-tih-sc-e08fa3-R1_A23YTGFLT4_1_2.gz | while read old_name new_name; do
    [ -f "${new_name}" ] || ln -s $old_name $new_name
done

fastqc \
    --quiet \
    --threads 2 \
    aih-tih-sc-e08fa3-R1_A23YTGFLT4_1_1.gz aih-tih-sc-e08fa3-R1_A23YTGFLT4_1_2.gz

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