ソースを参照

bam and index location

master
LUYAO REN 6年前
コミット
b6734dd343
2個のファイルの変更4行の追加4行の削除
  1. +2
    -2
      tasks/Dedup.wdl
  2. +2
    -2
      tasks/Metrics.wdl

+ 2
- 2
tasks/Dedup.wdl ファイルの表示

@@ -14,8 +14,8 @@ task Dedup {
set -o pipefail
set -e
export SENTIEON_LICENSE=192.168.0.55:8990
sentieon_bam=basename(${sorted_bam})
sentieon_bam_index=basename(${sorted_bam_index})
sentieon_bam=`basename ${sorted_bam}`
sentieon_bam_index=`basename ${sorted_bam_index}`
cp ${sorted_bam} .
cp ${sorted_bam_index} .
nt=$(nproc)

+ 2
- 2
tasks/Metrics.wdl ファイルの表示

@@ -19,8 +19,8 @@ task Metrics {
set -e
export SENTIEON_LICENSE=192.168.0.55:8990
nt=$(nproc)
sentieon_bam=basename(${sorted_bam})
sentieon_bam_index=basename(${sorted_bam_index})
sentieon_bam=`basename ${sorted_bam}`
sentieon_bam_index=`basename ${sorted_bam_index}`
cp ${sorted_bam} .
cp ${sorted_bam_index} .
${SENTIEON_INSTALL_DIR}/bin/sentieon driver -r ${STref_dir}/${fasta} -t $nt -i $sentieon_bam --algo MeanQualityByCycle ${sample}_mq_metrics.txt --algo QualDistribution ${sample}_qd_metrics.txt --algo GCBias --summary ${sample}_gc_summary.txt ${sample}_gc_metrics.txt --algo AlignmentStat ${sample}_aln_metrics.txt --algo InsertSizeMetricAlgo ${sample}_is_metrics.txt --algo CoverageMetrics --omit_base_output ${sample}_coverage_metrics

読み込み中…
キャンセル
保存