File Info
- Filename
- .command.sh
- Full Path
- s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/7f/36a1fb318ca195e4386c9f5b01fbc1/.command.sh
- Size
- 497 bytes
- Attempt
Content
View in new tab#!/bin/bash -euo pipefail
printf "%s %s\n" dna_s762_1.fastp.fastq.gz dna_s762_trimmed_1.gz dna_s762_2.fastp.fastq.gz dna_s762_trimmed_2.gz | while read old_name new_name; do
[ -f "${new_name}" ] || ln -s $old_name $new_name
done
fastqc \
--quiet \
--threads 2 \
dna_s762_trimmed_1.gz dna_s762_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