broadinstitute / wdltool

BSD 3-Clause "New" or "Revised" License
18 stars 4 forks source link

Show me the scatters! #47

Closed cjllanwarne closed 7 years ago

cjllanwarne commented 7 years ago

Shows cool scatter graphs like this!

WDL:

task foo {
  Int i
  command { ... }
  output {
    String str_out = i
    Int int_out = i + 1
  }
}

workflow scatter_test {
  Int x = 5
  Int y = 6
  scatter (s in [x, y]) {
    call foo { input: i = s }
  }
}

WomGraph test

mcovarr commented 7 years ago

questions:

cjllanwarne commented 7 years ago

@mcovarr

mcovarr commented 7 years ago

:+1: