Exemplo n.º 1
0
 def outputs(self) -> List[j.TOutput]:
     return [
         j.TOutput("out_file", j.File, doc="Single file to compare"),
         j.TOutput("line_count", j.Int, doc="Number of lines in the file"),
         j.TOutput("misc_files",
                   j.Array(j.File),
                   doc="array of output file, to show array index"),
     ]
Exemplo n.º 2
0
 def outputs(self) -> List[j.TOutput]:
     return [j.TOutput("out", j.String)]
Exemplo n.º 3
0
 def outputs(self) -> List[j.TOutput]:
     return [j.TOutput("out", j.Array(j.Int))]
 def outputs(self):
     return [j.TOutput("out", j.String())]
Exemplo n.º 5
0
 def outputs(self) -> List[j.TOutput]:
     return [j.TOutput("out_regions", j.Array(Bed))]