File Info

Filename
.command.sh
Full Path
s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/b8/fa8759ff6a8a3c4b0455db4a42a327/.command.sh
Size
481 bytes
Attempt
#!/bin/bash -euo pipefail
samtools \
    view \
    --threads 3 \
    --reference ref_genome.fa \
     \
    --output-fmt cram \
    -o MCF7_FFPE_RNA_0001_B23LG7FLT4_2.star_alignment.Aligned.sortedByCoord.out.cram \
    MCF7_FFPE_RNA_0001_B23LG7FLT4_2.Aligned.sortedByCoord.out.bam \


cat <<-END_VERSIONS > versions.yml
"NFCORE_RNAFUSION:RNAFUSION:SAMTOOLS_VIEW_ALIGNMENT_CRAM":
    samtools: $(echo $(samtools --version 2>&1) | sed 's/^.*samtools //; s/Using.*$//')
END_VERSIONS