Parcourir la source

name of bam

master
LUYAO REN il y a 4 ans
Parent
révision
eadb428a24
1 fichiers modifiés avec 3 ajouts et 3 suppressions
  1. +3
    -3
      tasks/mapping.wdl

+ 3
- 3
tasks/mapping.wdl Voir le fichier

set -e set -e
export SENTIEON_LICENSE=192.168.0.55:8990 export SENTIEON_LICENSE=192.168.0.55:8990
nt=$(nproc) nt=$(nproc)
${SENTIEON_INSTALL_DIR}/bin/bwa mem -M -R "@RG\tID:${group}.${type}\tSM:${sample}.${type}\tPL:${pl}" -t $nt -K 10000000 ${ref_dir}/${fasta} ${fastq_1} ${fastq_2} | ${SENTIEON_INSTALL_DIR}/bin/sentieon util sort -o ${sample}.sorted.bam -t $nt --sam2bam -i -
${SENTIEON_INSTALL_DIR}/bin/bwa mem -M -R "@RG\tID:${group}.${type}\tSM:${sample}.${type}\tPL:${pl}" -t $nt -K 10000000 ${ref_dir}/${fasta} ${fastq_1} ${fastq_2} | ${SENTIEON_INSTALL_DIR}/bin/sentieon util sort -o ${sample}.${type}.sorted.bam -t $nt --sam2bam -i -
>>> >>>


runtime { runtime {
dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/" dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
} }
output { output {
File sorted_bam = "${sample}.sorted.bam"
File sorted_bam_index = "${sample}.sorted.bam.bai"
File sorted_bam = "${sample}.${type}.sorted.bam"
File sorted_bam_index = "${sample}.${type}.sorted.bam.bai"
} }
} }

Chargement…
Annuler
Enregistrer