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