Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hs metrics #313

Open
wants to merge 34 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
0b10663
Update methylseq.nf
RogerHw May 7, 2023
2a324ce
Update methylseq.nf
RogerHw May 11, 2023
c4d67d5
Update methylseq.nf
RogerHw May 11, 2023
b978e52
Create collecthsmetrics
RogerHw May 15, 2023
ee479d7
Delete collecthsmetrics
RogerHw May 15, 2023
5033f8d
Update methylseq.nf
RogerHw May 17, 2023
c26e5c0
Update methylseq.nf
RogerHw May 20, 2023
f628c55
Update modules.json
RogerHw May 26, 2023
5cd09c4
Update nextflow.config
RogerHw May 26, 2023
c71c7ff
Update methylseq.nf
RogerHw Jun 1, 2023
6a0d1a4
Update methylseq.nf
RogerHw Jun 1, 2023
0b92210
hs metrics module
RogerHw Jun 1, 2023
d220a24
Create main.nf
RogerHw Jun 1, 2023
57ce5f1
Delete modules/nf-core /picard /collecthsmetrics directory
RogerHw Jun 1, 2023
8c34e86
Create meta.yml
RogerHw Jun 1, 2023
adb0e2c
Delete modules/nf-core/picard/collecths metrics directory
RogerHw Jun 1, 2023
6c18bf5
Create main.nf
RogerHw Jun 1, 2023
d139ddc
Create main.nf
RogerHw Jun 1, 2023
d53b7dd
Create meta.yml
RogerHw Jun 1, 2023
c5d8869
Update methylseq.nf
RogerHw Jun 1, 2023
1c15794
Update methylseq.nf
RogerHw Jun 1, 2023
56126c1
Update methylseq.nf
RogerHw Jun 5, 2023
3441447
Update nextflow_schema.json
RogerHw Jun 5, 2023
914d33a
Update nextflow.config
RogerHw Jun 5, 2023
4c1477b
Update nextflow_schema.json
RogerHw Jun 7, 2023
6b9d062
Update methylseq.nf
RogerHw Jun 7, 2023
ca65020
Update methylseq.nf
RogerHw Jun 7, 2023
c6b9503
Update methylseq.nf
RogerHw Jun 7, 2023
ecd6078
Update methylseq.nf
RogerHw Jun 7, 2023
987cdec
Update methylseq.nf
RogerHw Jun 7, 2023
4bec010
Update methylseq.nf
RogerHw Jun 9, 2023
3cc9e87
Update methylseq.nf
RogerHw Jun 12, 2023
0a71f8b
Update methylseq.nf
RogerHw Jun 13, 2023
f8ae01d
Channels were updated.
RogerHw Jun 14, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions modules.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,16 @@
"git_sha": "5e34754d42cd2d5d248ca8673c0a53cdf5624905",
"installed_by": ["modules"]
},
"picard/collecthsmetrics": {
"branch": "master",
"git_sha": "0ce3ab0ac301f160225b22254fa238478b4389f2",
"installed_by": ["modules"]
},
"picard/createsequencedictionary": {
"branch": "master",
"git_sha": "911696ea0b62df80e900ef244d7867d177971f73",
"installed_by": ["modules"]
},
"picard/markduplicates": {
"branch": "master",
"git_sha": "eca65aa4a5e2e192ac44d6962c8f9260f314ffb8",
Expand Down
82 changes: 82 additions & 0 deletions modules/nf-core/picard/collecthsmetrics/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

89 changes: 89 additions & 0 deletions modules/nf-core/picard/collecthsmetrics/meta.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

42 changes: 42 additions & 0 deletions modules/nf-core/picard/createsequencedictionary/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

45 changes: 45 additions & 0 deletions modules/nf-core/picard/createsequencedictionary/meta.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,11 @@ params {
multiqc_logo = null
max_multiqc_email_size = '25.MB'
multiqc_methods_description = null



// HS metrics
target_intervals = null
bait_intervals = null

// Intermediate files
save_reference = false
save_align_intermeds = false
Expand Down
18 changes: 17 additions & 1 deletion nextflow_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -637,5 +637,21 @@
{
"$ref": "#/definitions/institutional_config_options"
}
]
],
"properties": {
"target_intervals": {
"type": "string",
"default": "None",
"hidden": true,
"description": "Path to BED file with Target intervals"
},
"bait_intervals": {
"type": "string",
"default": "None",
"hidden": true,
"description": "Path to Bed file with Bait intervals"
}
}
}


Loading