File Info
- Filename
- .command.sh
- Full Path
- s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/22/2dc8bea2c72c49d86f8ff8f7c86f6d/.command.sh
- Size
- 431 bytes
- Attempt
Content
View in new tab#!/bin/bash -euo pipefail
printf "%s %s\n" dna_s765_R1.fastq.gz dna_s765_1.gz dna_s765_R2.fastq.gz dna_s765_2.gz | while read old_name new_name; do
[ -f "${new_name}" ] || ln -s $old_name $new_name
done
fastqc \
--quiet \
--threads 2 \
dna_s765_1.gz dna_s765_2.gz
cat <<-END_VERSIONS > versions.yml
"NFCORE_RNAFUSION:RNAFUSION:FASTQC":
fastqc: $( fastqc --version | sed '/FastQC v/!d; s/.*v//' )
END_VERSIONS