Skip to content
Snippets Groups Projects
Commit 9874420e authored by Dominik Brilhaus's avatar Dominik Brilhaus
Browse files

Merge branch 'cwl-metadata' into 'main'

Cwl metadata

See merge request !20
parents 436ced71 ed571049
No related branches found
No related tags found
1 merge request!20Cwl metadata
Pipeline #9544 passed
# Checklist for good CWL documents
based on recommendations from:
- https://www.commonwl.org/user_guide/topics/best-practices.html
- https://www.commonwl.org/user_guide/topics/metadata-and-authorship.html
- [Design](#design)
- [Single-step first](#single-step-first)
- [Dependencies](#dependencies)
- [Soft requirements = `hints`](#soft-requirements--hints)
- [Hard requirements = `requirements`](#hard-requirements--requirements)
- [Metadata](#metadata)
- [Namespaces and schemas](#namespaces-and-schemas)
## Design
### Keep it Simple: Single-step
- follow the [KISS principle](https://en.wikipedia.org/wiki/KISS_principle)
- a `CommandLineTool` document should only execute one process
- use `Workflow` documents to design more complex, multi-step pipelines
- use `scatter` to execute the process on multiple inputs
- do not hard code input, output paths
## Dependencies
### Soft requirements = `hints`
Specify software and resource requirements under `hints`
- add `SoftwareRequirement` to specify software version and reference
- `package: ` name of the software or package
- `specs: ` reference url from https://identifiers.org/biotools/ or SciCrunch https://identifiers.org/rrid/
- `version: [ "0.11.9" ]`
- add `DockerRequirement`
- reference a local `Dockerfile` or a published Docker image
- add `ResourceRequirement` to specify the required compute resources
### Hard requirements = `requirements`
Use the `requirements` primarily to specify hard requirements needed to run the current `CommandLineTool` or `Workflow` document
## Metadata
### Namespaces and schemas
Adding namespaces and schemas allows to reuse them elsewhere in a CWL document
```yaml
$namespaces:
s: https://schema.org/
edam: http://edamontology.org/
$schemas:
- https://schema.org/version/latest/schemaorg-current-https.rdf
- http://edamontology.org/EDAM_1.18.owl
```
### Attribute authors and contributors
```yaml
s:author:
- class: s:Person
s:identifier: <author ORCID>
s:email: mailto:<author email>
s:name: <author name>
s:contributor:
- class: s:Person
s:identifier: <contributor ORCID>
s:email: mailto:<contributor email>
s:name: <contributor name>
s:citation: <DOI to software paper>
s:codeRepository: <URL to software repo (e.g. github)>
s:dateCreated: "2016-12-13"
s:license: <URL to license, e.g. from https://spdx.org/licenses/>
```
...@@ -22,3 +22,16 @@ outputs: ...@@ -22,3 +22,16 @@ outputs:
output: output:
type: File[] type: File[]
outputSource: deseq2/output outputSource: deseq2/output
$namespaces:
s: https://schema.org/
edam: http://edamontology.org/
$schemas:
- https://schema.org/version/latest/schemaorg-current-https.rdf
- http://edamontology.org/EDAM_1.18.owl
s:author:
- class: s:Person
s:name: Dominik Brilhaus
s:identifier: https://orcid.org/0000-0001-9021-3197
\ No newline at end of file
...@@ -21,4 +21,17 @@ steps: ...@@ -21,4 +21,17 @@ steps:
outputs: outputs:
fastqc_outdir: fastqc_outdir:
type: Directory type: Directory
outputSource: fastqc/fastqc_outdir outputSource: fastqc/fastqc_outdir
\ No newline at end of file
$namespaces:
s: https://schema.org/
edam: http://edamontology.org/
$schemas:
- https://schema.org/version/latest/schemaorg-current-https.rdf
- http://edamontology.org/EDAM_1.18.owl
s:author:
- class: s:Person
s:name: Dominik Brilhaus
s:identifier: https://orcid.org/0000-0001-9021-3197
\ No newline at end of file
...@@ -25,4 +25,17 @@ outputs: ...@@ -25,4 +25,17 @@ outputs:
outputSource: isaSampleToRawDataSeq/sampleseqCsv outputSource: isaSampleToRawDataSeq/sampleseqCsv
sampleseqXlsx: sampleseqXlsx:
type: File type: File
outputSource: isaSampleToRawDataSeq/sampleseqXlsx outputSource: isaSampleToRawDataSeq/sampleseqXlsx
\ No newline at end of file
$namespaces:
s: https://schema.org/
edam: http://edamontology.org/
$schemas:
- https://schema.org/version/latest/schemaorg-current-https.rdf
- http://edamontology.org/EDAM_1.18.owl
s:author:
- class: s:Person
s:name: Dominik Brilhaus
s:identifier: https://orcid.org/0000-0001-9021-3197
\ No newline at end of file
...@@ -41,3 +41,16 @@ outputs: ...@@ -41,3 +41,16 @@ outputs:
kallistoOutDir: kallistoOutDir:
type: Directory type: Directory
outputSource: kallisto/kallistoOutDir outputSource: kallisto/kallistoOutDir
$namespaces:
s: https://schema.org/
edam: http://edamontology.org/
$schemas:
- https://schema.org/version/latest/schemaorg-current-https.rdf
- http://edamontology.org/EDAM_1.18.owl
s:author:
- class: s:Person
s:name: Dominik Brilhaus
s:identifier: https://orcid.org/0000-0001-9021-3197
\ No newline at end of file
...@@ -16,3 +16,16 @@ steps: ...@@ -16,3 +16,16 @@ steps:
out: [] out: []
outputs: [] outputs: []
$namespaces:
s: https://schema.org/
edam: http://edamontology.org/
$schemas:
- https://schema.org/version/latest/schemaorg-current-https.rdf
- http://edamontology.org/EDAM_1.18.owl
s:author:
- class: s:Person
s:name: Dominik Brilhaus
s:identifier: https://orcid.org/0000-0001-9021-3197
...@@ -27,3 +27,17 @@ outputs: ...@@ -27,3 +27,17 @@ outputs:
outdir: outdir:
type: Directory[] type: Directory[]
outputSource: sleuth/outdir outputSource: sleuth/outdir
$namespaces:
s: https://schema.org/
edam: http://edamontology.org/
$schemas:
- https://schema.org/version/latest/schemaorg-current-https.rdf
- http://edamontology.org/EDAM_1.18.owl
s:author:
- class: s:Person
s:name: Dominik Brilhaus
s:identifier: https://orcid.org/0000-0001-9021-3197
\ No newline at end of file
...@@ -19,10 +19,10 @@ hints: ...@@ -19,10 +19,10 @@ hints:
dockerPull: quay.io/biocontainers/fastqc:0.11.9--hdfd78af_1 dockerPull: quay.io/biocontainers/fastqc:0.11.9--hdfd78af_1
SoftwareRequirement: SoftwareRequirement:
packages: packages:
fastqc: - package: fastqc
specs: specs:
- https://identifiers.org/biotools/fastqc - https://identifiers.org/biotools/fastqc
- - https://identifiers.org/rrid/RRID:SCR_014583 - https://identifiers.org/rrid/RRID:SCR_014583
version: [ "0.11.9" ] version: [ "0.11.9" ]
baseCommand: "fastqc" baseCommand: "fastqc"
...@@ -58,5 +58,3 @@ $schemas: ...@@ -58,5 +58,3 @@ $schemas:
- https://edamontology.org/EDAM_1.25.owl - https://edamontology.org/EDAM_1.25.owl
s:license: https://spdx.org/licenses/GPL-3.0-or-later s:license: https://spdx.org/licenses/GPL-3.0-or-later
...@@ -33,7 +33,7 @@ hints: ...@@ -33,7 +33,7 @@ hints:
dockerPull: quay.io/biocontainers/kallisto:0.51.1--ha4fb952_1 dockerPull: quay.io/biocontainers/kallisto:0.51.1--ha4fb952_1
SoftwareRequirement: SoftwareRequirement:
packages: packages:
kallisto: - package: kallisto
version: [ "0.51.1" ] version: [ "0.51.1" ]
specs: specs:
- https://identifiers.org/rrid/RRID:SCR_016582 - https://identifiers.org/rrid/RRID:SCR_016582
...@@ -82,5 +82,8 @@ $namespaces: ...@@ -82,5 +82,8 @@ $namespaces:
s: https://schema.org/ s: https://schema.org/
$schemas: $schemas:
- https://edamontology.org/EDAM_1.25.owl - https://edamontology.org/EDAM_1.25.owl
- https://schema.org/version/latest/schemaorg-current-https.rdf
s:license: https://spdx.org/licenses/BSD-2-Clause s:license: https://spdx.org/licenses/BSD-2-Clause
s:citation: https://dx.doi.org/10.1038/nbt.3519
s:codeRepository: https://github.com/pachterlab/kallisto
...@@ -45,7 +45,7 @@ hints: ...@@ -45,7 +45,7 @@ hints:
dockerPull: quay.io/biocontainers/kallisto:0.51.1--ha4fb952_1 dockerPull: quay.io/biocontainers/kallisto:0.51.1--ha4fb952_1
SoftwareRequirement: SoftwareRequirement:
packages: packages:
kallisto: - package: kallisto
version: [ "0.51.1" ] version: [ "0.51.1" ]
specs: [ https://identifiers.org/biotools/kallisto ] specs: [ https://identifiers.org/biotools/kallisto ]
...@@ -175,5 +175,8 @@ $namespaces: ...@@ -175,5 +175,8 @@ $namespaces:
s: https://schema.org/ s: https://schema.org/
$schemas: $schemas:
- https://edamontology.org/EDAM_1.25.owl - https://edamontology.org/EDAM_1.25.owl
- https://schema.org/version/latest/schemaorg-current-https.rdf
s:license: https://spdx.org/licenses/BSD-2-Clause s:license: https://spdx.org/licenses/BSD-2-Clause
s:citation: https://dx.doi.org/10.1038/nbt.3519
s:codeRepository: https://github.com/pachterlab/kallisto
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment