Skip to content

Commit

Permalink
added make_referencebg
Browse files Browse the repository at this point in the history
  • Loading branch information
SooLee committed Dec 5, 2017
1 parent aa741b7 commit 74a7374
Showing 1 changed file with 72 additions and 0 deletions.
72 changes: 72 additions & 0 deletions cwl_awsem/repliseq/make_referencebg.cwl
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
{
"outputs": [
{
"id": "#out_reference_bg",
"type": [
"null",
"File"
],
"outputBinding": {
"glob": "$(inputs.outdir + '/' + inputs.outprefix + '.inorm.bg')"
}
}
],
"baseCommand": [
"make_referencebg"
],
"hints": [
{
"dockerPull": "duplexa/4dn-repliseq:v9",
"class": "DockerRequirement"
}
],
"cwlVersion": "draft-3",
"class": "CommandLineTool",
"arguments": [],
"inputs": [
{
"id": "#outdir",
"inputBinding": {
"position": 1,
"separate": true
},
"default": ".",
"type": [
"null",
"string"
]
},
{
"id": "#outprefix",
"inputBinding": {
"position": 2,
"separate": true
},
"default": "out",
"type": [
"null",
"string"
]
},
{
"id": "#input_bgs",
"inputBinding": {
"itemSeparator": " ",
"position": 3,
"separate": true
},
"type": [
"null",
{
"items": "File",
"type": "array"
}
]
}
],
"requirements": [
{
"class": "InlineJavascriptRequirement"
}
]
}

0 comments on commit 74a7374

Please sign in to comment.