-
Notifications
You must be signed in to change notification settings - Fork 172
Taps #574
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
Merged
Merged
Taps #574
Changes from all commits
Commits
Show all changes
51 commits
Select commit
Hold shift + click to select a range
db60bfe
Merge pull request #558 from nf-core/dev
sateeshperi b8a893f
updated version
eduard-watchmaker a424477
updated version
eduard-watchmaker eb87a07
updated version
eduard-watchmaker 42f8fe0
schema
eduard-watchmaker 787282d
path
eduard-watchmaker 320f9e2
path
eduard-watchmaker de90b7d
working version
eduard-watchmaker 8f590c7
changed fq_align_dedup_bwamem for fq_align_bwa
eduard-watchmaker cf83bb2
samtools change
eduard-watchmaker 7bef714
taps to nfcore
eduard-watchmaker c4755b5
add bam to workflow name
eduard-watchmaker dca1e44
renaming
eduard-watchmaker 93abf2a
changes
eduard-watchmaker 8265979
more tests
eduard-watchmaker 9d142bf
comment out
eduard-watchmaker bb149eb
params
eduard-watchmaker a303797
rm file from test
eduard-watchmaker 9ce829f
rm file from test
eduard-watchmaker 0b69be9
rm file from test
eduard-watchmaker ec22182
new parabricks fq2bam
eduard-watchmaker 0051ed1
fix
eduard-watchmaker 8d5a482
add picard groups
eduard-watchmaker 7cc8490
why only one sample
eduard-watchmaker a5fa5ae
why only one sample
eduard-watchmaker d4bbc26
why only one sample
eduard-watchmaker 4e15539
why only one sample
eduard-watchmaker 892598d
why only one sample
eduard-watchmaker b521204
why only one sample
eduard-watchmaker 146cb8f
boradcast
eduard-watchmaker 3203069
boradcast methyldackel
eduard-watchmaker 32f5e0b
updated to fastq_align_dedup_bwamem
eduard-watchmaker 7025f4d
Merge branch 'taps' of github.com:nf-core/methylseq into taps
eduard-watchmaker 53e636d
missing comma
eduard-watchmaker a06c82d
rm redundant code
eduard-watchmaker 81666bb
config fix
eduard-watchmaker ffc1c2d
forgot damn config
eduard-watchmaker d243263
more channels
eduard-watchmaker 86a5349
new snapshots
e254e62
less tests
eduard-watchmaker 48786da
fixing new version HS metrics
eduard-watchmaker ffc3ee3
ignore multiqc parquet
eduard-watchmaker 79fd87a
input was ahead of time lol
eduard-watchmaker e959b2d
gpu snapshhot
4d98def
fix lint issues from new template
7b9930c
Merge branch 'dev' into taps
eduard-watchmaker 301de2e
PR feedback
a0b77aa
forgot allOf
d7e865c
paths for output
08d1bf9
update multiqc module and snapshots
sateeshperi 8f49567
pre-commit fix all files
sateeshperi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| process { | ||
| withName: GATK4_REMOVEDUPLICATES { | ||
| ext.args = "--REMOVE_DUPLICATES true --TAG_DUPLICATE_SET_MEMBERS true" | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| process { | ||
| withName: PICARD_ADDORREPLACEREADGROUPS { | ||
| ext.args = "--RGID 1 --RGLB lib1 --RGPL illumina --RGPU unit1 --RGSM sample1" | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| process { | ||
| withName: PICARD_REMOVEDUPLICATES { | ||
| ext.args = "--ASSUME_SORTED true --REMOVE_DUPLICATES true --VALIDATION_STRINGENCY LENIENT --PROGRAM_RECORD_ID 'null' --TMP_DIR tmp" | ||
| ext.prefix = { "${meta.id}.dedup.sorted" } | ||
| publishDir = [ | ||
| [ | ||
| path: { "${params.outdir}/${params.aligner}/deduplicated/picard_metrics" }, | ||
| pattern: "*.metrics.txt", | ||
| mode: params.publish_dir_mode | ||
| ], | ||
| [ | ||
| path: { "${params.outdir}/${params.aligner}/deduplicated" }, | ||
| pattern: "*.bam", | ||
| mode: params.publish_dir_mode | ||
| ] | ||
| ] | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| process { | ||
| withName: RASTAIR_CALL { | ||
| ext.args = [ | ||
| // Pending the resolution of the mbias_parse process | ||
| params.trim_OT ?: '0,0,10,0', // [r1_start, r1_end, r2_start, r2_end] | ||
| params.trim_OB ?: '0,0,10,0' // [r1_start, r1_end, r2_start, r2_end] | ||
| ].join(" ").trim() | ||
| publishDir = [ | ||
| [ | ||
| path: { "${params.outdir}/rastair/call" }, | ||
| mode: params.publish_dir_mode, | ||
| pattern: "*.txt" | ||
| ], [ | ||
| path: { "${params.outdir}/rastair/call" }, | ||
| mode: params.publish_dir_mode, | ||
| pattern: "*.gz" | ||
| ] | ||
| ] | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| process { | ||
| withName: RASTAIR_MBIAS { | ||
| publishDir = [ | ||
| [ | ||
| path: { "${params.outdir}/rastair/mbias" }, | ||
| mode: params.publish_dir_mode, | ||
| pattern: "*.txt" | ||
| ] | ||
| ] | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| process { | ||
| withName: RASTAIR_MBIASPARSER { | ||
| publishDir = [ | ||
| [ | ||
| path: { "${params.outdir}/rastair/mbiasparser" }, | ||
| mode: params.publish_dir_mode, | ||
| pattern: "*rastair_mbias_processed*" | ||
| ] | ||
| ] | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| process { | ||
| withName: RASTAIR_METHYLKIT { | ||
| publishDir = [ | ||
| [ | ||
| path: { "${params.outdir}/rastair/methylkit" }, | ||
| mode: params.publish_dir_mode, | ||
| pattern: "*.txt.gz" | ||
| ] | ||
| ] | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| includeConfig "../modules/methyldackel_extract.config" | ||
| includeConfig "../modules/methyldackel_mbias.config" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| includeConfig "../modules/rastair_call.config" | ||
| includeConfig "../modules/rastair_mbias.config" | ||
| includeConfig "../modules/rastair_mbias_parser.config" | ||
| includeConfig "../modules/rastair_methylkit.config" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| includeConfig "../modules/gunzip.config" | ||
| includeConfig "../modules/bismark_genomepreparation.config" | ||
| includeConfig "../modules/samtools_faidx.config" | ||
| includeConfig "../modules/bwameth_index.config" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| includeConfig "../modules/picard_addorreplacereadgroups.config" | ||
| includeConfig "../modules/picard_removeduplicates.config" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.