Quellcode durchsuchen

add heatmap

master
YaqingLiu vor 4 Jahren
Ursprung
Commit
471c711429
1 geänderte Dateien mit 4 neuen und 3 gelöschten Zeilen
  1. +4
    -3
      tasks/export.wdl

+ 4
- 3
tasks/export.wdl Datei anzeigen

@@ -6,11 +6,11 @@ task export{
String disk_size

command <<<
# mkdir -p /cromwell_root/tmp/cnvkit
cp -r ${sep=" " results} .
# cd /cromwell_root/tmp/cnvkit
# this version app just provides seg
# seg
cnvkit.py export seg *.cns -o ${sample_id}.seg
# heatmap
cnvkit.py heatmap *.cns -o ${sample_id}.heatmap
>>>
runtime {
@@ -22,5 +22,6 @@ task export{

output {
File seg = "${sample_id}.seg"
File heatmap = "${sample_id}.heatmap"
}
}

Laden…
Abbrechen
Speichern