Skip to content

Commit

Permalink
update the meta.yml file and ask for review
Browse files Browse the repository at this point in the history
  • Loading branch information
abhi18av committed Sep 6, 2021
1 parent 66ea67a commit c7b0c1a
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 20 deletions.
1 change: 0 additions & 1 deletion modules/deepvariant/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ process DEEPVARIANT {
container "docker://google/deepvariant:1.2.0"
} else {
container "google/deepvariant:1.2.0"
// container "quay.io/biocontainers/deepvariant:1.2.0--py36hf3e76ba_0"
}

input:
Expand Down
49 changes: 30 additions & 19 deletions modules/deepvariant/meta.yml
Original file line number Diff line number Diff line change
@@ -1,47 +1,58 @@
name: deepvariant
## TODO nf-core: Add a description of the module and list keywords
description: write your description here
description: DeepVariant is an analysis pipeline that uses a deep neural network to call genetic variants from next-generation DNA sequencing data
keywords:
- sort
- variant calling
- machine learning
tools:
- deepvariant:
## TODO nf-core: Add a description and other details for the software below
description: DeepVariant is an analysis pipeline that uses a deep neural network to call genetic variants from next-generation DNA sequencing data
homepage: None
documentation: None
tool_dev_url: None
doi: ""
licence: ['MIT']
homepage: https://github.com/google/deepvariant
documentation: https://github.com/google/deepvariant
tool_dev_url: https://github.com/google/deepvariant
doi: "https://doi.org/10.1038/nbt.4235"
licence: ['BSD-3-clause']

## TODO nf-core: Add a description of all of the variables used as input
input:
- meta:
type: map
description: |
Groovy Map containing sample information
e.g. [ id:'test', single_end:false ]
## TODO nf-core: Delete / customise this example input
- bam:
type: file
description: BAM/CRAM/SAM file
pattern: "*.{bam,cram,sam}"
description: BAM file
pattern: "*.bam"
- bai:
type: file
description: Index of BAM file
pattern: "*.bai"
- fasta:
type: file
description: The reference fasta file
pattern: "*.fasta"
- fai:
type: file
description: Index of reference fasta file
pattern: "*.fai"

## TODO nf-core: Add a description of all of the variables used as output
output:
- meta:
type: map
description: |
Groovy Map containing sample information
e.g. [ id:'test', single_end:false ]
- vcf:
type: file
description: Compressed VCF file
pattern: "*.vcf.gz"
- gvcf:
type: file
description: Compressed GVCF file
pattern: "*.g.vcf.gz"
- version:
type: file
description: File containing software version
pattern: "*.{version.txt}"
## TODO nf-core: Delete / customise this example output
- bam:
type: file
description: Sorted BAM/CRAM/SAM file
pattern: "*.{bam,cram,sam}"

authors:
- "@abhi18av"

0 comments on commit c7b0c1a

Please sign in to comment.