Skip to content
This repository was archived by the owner on Oct 2, 2020. It is now read-only.

Commit aed0a76

Browse files
committed
linux-sort/bedtools/STAR fixes
1 parent 2768ad8 commit aed0a76

File tree

4 files changed

+29
-23
lines changed

4 files changed

+29
-23
lines changed

tools/STAR.cwl

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env cwl-runner
2-
# "@base": "https://w3id.org/cwl/cwl#"
32

43
"@context":
4+
"cwl": "https://w3id.org/cwl/cwl#"
55
"foaf": "http://xmlns.com/foaf/0.1/"
66
"doap": "http://usefulinc.com/ns/doap"
77
"adms": "http://purl.org/adms/"
@@ -23,18 +23,17 @@ adms:Asset:
2323
doap:license: "GPL"
2424
doap:category: "commandline tool"
2525
doap:programming-language: "C++"
26-
- foaf:Organization:
27-
foaf:name: "Cold Spring Harbor Laboratory, Cold Spring Harbor, NY, USA"
28-
- foaf:Organization:
29-
foaf:name: "2Pacific Biosciences, Menlo Park, CA, USA"
26+
foaf:Organization:
27+
- foaf:name: "Cold Spring Harbor Laboratory, Cold Spring Harbor, NY, USA"
28+
- foaf:name: "2Pacific Biosciences, Menlo Park, CA, USA"
3029
foaf:publications:
3130
- foaf:title: "(Dobin et al., 2013) STAR: ultrafast universal RNA-seq aligner. Bioinformatics."
3231
foaf:homepage: "http://www.ncbi.nlm.nih.gov/pubmed/23104886"
3332
doap:developer:
3433
foaf:Person:
35-
foaf:name: "Alexander Dobin"
36-
foaf:mbox: "mailto:dobin at cshl.edu"
37-
foaf:fundedBy: "This work was funded by NHGRI (NIH) grant U54HG004557"
34+
foaf:name: "Alexander Dobin"
35+
foaf:mbox: "mailto:dobin at cshl.edu"
36+
foaf:fundedBy: "This work was funded by NHGRI (NIH) grant U54HG004557"
3837
adms:AssetDistribution:
3938
doap:name: "STAR.cwl"
4039
doap:description: "Developed for CWL consortium http://commonwl.org/"

tools/bedtools-genomecov.cwl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#!/usr/bin/env cwl-runner
22

33
"@context":
4+
"cwl": "https://w3id.org/cwl/cwl#"
45
"foaf": "http://xmlns.com/foaf/0.1/"
56
"doap": "http://usefulinc.com/ns/doap"
67
"adms": "http://purl.org/adms/"
@@ -30,7 +31,7 @@ adms:Asset:
3031
- foaf:title: "(Quinlan and Hall, 2010) BEDTools: a flexible suite of utilities for comparing genomic features. Bioinformatics."
3132
foaf:homepage: "http://www.ncbi.nlm.nih.gov/pubmed/20110278"
3233
doap:maintainer:
33-
- foaf:Person:
34+
foaf:Person:
3435
foaf:name: "Aaron R. Quinlan"
3536
foaf:mbox: "aaronquinlan at gmail.com"
3637
adms:AssetDistribution:

tools/jobs/linux-sort-job.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
{
2-
"input": {
3-
"class": "File",
4-
"path": "../test-files/SRR1031972.bedGraph"
5-
},
2+
"input": [{
3+
"path": "../test-files/SRR1031972.bedGraph",
4+
"class": "File"
5+
}],
6+
"output": "./test-files/SRR1031972.bedGraph.sorted",
67
"key": [
78
"1,1",
89
"2,2n"

tools/linux-sort.cwl

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
#!/usr/bin/env cwl-runner
22

3+
"@context":
4+
"cwl": "https://w3id.org/cwl/cwl#"
5+
"foaf": "http://xmlns.com/foaf/0.1/"
6+
"doap": "http://usefulinc.com/ns/doap"
7+
"adms": "http://purl.org/adms/"
8+
"admssw": "http://purl.org/adms/sw/"
9+
310
adms:Asset:
411
admssw:SoftwareProject:
512
doap:name: "sort"
@@ -9,15 +16,13 @@ adms:Asset:
916
- doap:revision: "5.93"
1017
doap:license: "GPL"
1118
doap:category: "commandline tool"
12-
- doap:developer:
13-
foaf:Person:
14-
foaf:name: "Mike Haertel"
15-
- doap:developer:
16-
foaf:Person:
17-
foaf:name: "Paul Eggert"
18-
- doap:developer:
19-
foaf:Person:
20-
foaf:mbox: "bug-coreutils@gnu.org"
19+
doap:developer:
20+
- foaf:Person:
21+
foaf:name: "Mike Haertel"
22+
- foaf:Person:
23+
foaf:name: "Paul Eggert"
24+
- foaf:Person:
25+
foaf:mbox: "bug-coreutils@gnu.org"
2126
adms:AssetDistribution:
2227
doap:name: "linux-sort.cwl"
2328
doap:description: "Developed for CWL consortium http://commonwl.org/"
@@ -79,7 +84,7 @@ outputs:
7984
outputBinding:
8085
glob: $(inputs.output)
8186

82-
stdout:
87+
stdout: $(inputs.output)
8388
baseCommand: ["sort"]
8489
#$(inputs.input.path.split('/').slice(-1)[0] + '.sorted')
8590

0 commit comments

Comments
 (0)