aboutsummaryrefslogtreecommitdiff
path: root/workflows/pangenome-generate/sort_fasta_by_quality_and_len.cwl
blob: f8df786e7904234a217c574a82fa422c28e94929 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
cwlVersion: v1.1
class: CommandLineTool
hints:
  ResourceRequirement:
    coresMin: 1
    ramMin: 3000
inputs:
    reversed_sorting:
    inputBinding: {position: 3}
  readsFA:
    type: File
    inputBinding: {position: 2}
  script:
    type: File
    inputBinding: {position: 1}
    default: {class: File, location: sort_fasta_by_quality_and_len.py}
stdout: $(inputs.readsFA.nameroot).sorted_by_quality_and_len.fasta
outputs:
  sortedReadsFA:
    type: stdout
  dups:
    type: File
    outputBinding: {glob: dups.txt}
requirements:
  InlineJavascriptRequirement: {}
  ShellCommandRequirement: {}
baseCommand: [python]