-
Notifications
You must be signed in to change notification settings - Fork 423
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
added indexcov : finding large INDEL using the BAI index #1613
Merged
Merged
Changes from 30 commits
Commits
Show all changes
37 commits
Select commit
Hold shift + click to select a range
6c70f3e
add indexcov
lindenb c8b922b
indexcov germline works
lindenb add7b5f
update README CHANGELOG
lindenb 2b0ab52
merge dev
lindenb 5db7e39
merge into dev
lindenb 5b02760
fix modules
lindenb ada5543
fix indent
lindenb c8920bd
fix CHANGELOG
lindenb 892da3d
[automated] Fix code linting
nf-core-bot 09371b6
review for https://github.com/nf-core/sarek/pull/1613
plu1087 cf2c697
add somatic; add indexcov in usage
lindenb cdd529d
multiqc for indexcov
lindenb 04086cd
Update docs/output.md
lindenb 6bf0440
Update README.md
lindenb 6f0db0b
Update README.md
lindenb 8d69004
Update docs/usage.md
lindenb 0aa03a4
Update nextflow_schema.json
lindenb 1224f98
Update docs/usage.md
lindenb 4740af8
Merge branch 'dev' into pl_goleft
maxulysse d1cfad7
Update modules/local/samtools/reindex_bam/environment.yml
lindenb 264c948
apply https://github.com/nf-core/sarek/pull/1613#discussion_r1758400272
lindenb 1c3cabd
Merge branch 'dev' into pl_goleft
maxulysse 2e9581c
Merge branch 'dev' into pl_goleft
FriederikeHanssen ea11058
update metromap
FriederikeHanssen 041fd87
add paired
FriederikeHanssen c50e779
Update docs/usage.md
FriederikeHanssen 30d5520
Merge branch 'dev' into pl_goleft
FriederikeHanssen eb62596
[automated] Fix code linting
nf-core-bot 2141330
fix tests, conversion was removed
FriederikeHanssen 532902a
Merge remote-tracking branch 'origin/pl_goleft' into pl_goleft
FriederikeHanssen b18c60a
Update docs/usage.md
FriederikeHanssen b5b2ae2
Update modules/local/samtools/reindex_bam/environment.yml
FriederikeHanssen a172fbe
bump module version
FriederikeHanssen d28c92f
Merge remote-tracking branch 'origin/pl_goleft' into pl_goleft
FriederikeHanssen 0b144ff
fix naming
FriederikeHanssen 78cfeca
fix subway paths
FriederikeHanssen 6dc5f99
fix channel name
FriederikeHanssen 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 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 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 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,21 @@ | ||
|
||
// INDEXCOV | ||
|
||
process { | ||
if (params.tools && params.tools.split(',').contains('indexcov')) { | ||
|
||
withName: 'SAMTOOLS_REINDEX_BAM' { | ||
ext.args = { ' -F 3844 -q 30 ' } // high mapq , primary read paired properly mapped | ||
} | ||
|
||
withName: 'GOLEFT_INDEXCOV' { | ||
publishDir = [ | ||
mode: params.publish_dir_mode, | ||
path: { "${params.outdir}/variant_calling/indexcov/" } | ||
] | ||
|
||
} | ||
|
||
} | ||
|
||
} |
This file contains 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.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this file should be in the image folder