File Info

Filename
.command.sh
Full Path
s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b6/cb561b429dc61faa6a2e05d618f5e5/.command.sh
Size
563 bytes
Attempt
#!/bin/bash -euo pipefail
printf "%s %s\n" 659_ciZ-T1-TRNA-1_A23MVY2LT4_2_R1.fastq.gz 659_ciZ-T1-TRNA-1_A23MVY2LT4_2_1.gz 659_ciZ-T1-TRNA-1_A23MVY2LT4_2_R2.fastq.gz 659_ciZ-T1-TRNA-1_A23MVY2LT4_2_2.gz | while read old_name new_name; do
    [ -f "${new_name}" ] || ln -s $old_name $new_name
done

fastqc \
    --quiet \
    --threads 2 \
    659_ciZ-T1-TRNA-1_A23MVY2LT4_2_1.gz 659_ciZ-T1-TRNA-1_A23MVY2LT4_2_2.gz

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