-
Notifications
You must be signed in to change notification settings - Fork 11
Pints #58
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 serv 8000 ice and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Pints #58
Changes from all commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
1671b34
refactor(TI): Always run Homer and skip grohmm
edmundmiller 2edb5d8
build(pints): Run nf-core modules install
edmundmiller 7e16c57
feat(pints): Add initial module call
edmundmiller 70eec25
fix(pints): Pull docker container for now
edmundmiller 43aef9a
fix(pints): Use bidirectional peaks
edmundmiller a316b9e
fix(homer): factor => groseq
edmundmiller b5b0c81
feat(TI): Introduce assay_type to handle multiple assays
edmundmiller 4c19d9b
test: Add copro and grocap configs
edmundmiller 73ef7c8
style: Move bed2saf to correct sort
edmundmiller c92cd7f
docs: Add PINTS citation
edmundmiller 882a803
feat(TI): Add bedtools intersect filter
edmundmiller 6b650ef
fix(TI): Remove any empty bed files
edmundmiller 2ca4cd1
fix(TI): Update bed2saf to have a meta
edmundmiller 75e4958
fix(#50): Use group bams for featurecounts
edmundmiller 99e7eeb
fix(TI): Add bedtools merge to combine all PINTS bed files
edmundmiller e15b8d9
refactor(TI): Move into separate subworkflow
edmundmiller 029c9b5
test: Add a region file that works with test profile
edmundmiller a9d702c
chore: Collect all the versions
edmundmiller e6e89c0
chore: Update changelog
edmundmiller fbaadbb
fix(TI): Only run homer when assay is GROseq
edmundmiller b506b79
fix(TI): Use cat to combine bedfiles
edmundmiller 456cedb
fix(TI): Change bedtools merge prefix
edmundmiller c273e21
test: Add filter_bed to pints tests
edmundmiller 0b55ffb
fix(TI): Sort bed file before merging
edmundmiller 0ef2ee8
style(TI): Change short process calls to one line
edmundmiller 0d61c1c
fix(TI): Replace bed2saf with awk script
edmundmiller 435b8e1
ci: Remove local_modules workflow
edmundmiller bf99e34
chore: Remove default in schema
edmundmiller 33cd2e3
chore: Remove old groovy files
edmundmiller 338d675
style: Fix spacing
edmundmiller 9ea9a76
chore: FIXME => TODO
edmundmiller 8056f32
fix(TI): Remove multiqc calls
edmundmiller 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 was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/* | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
Nextflow config file for running minimal tests | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
Defines input files and everything required to run a fast and simple pipeline test. | ||
|
||
Use as follows: | ||
nextflow run nf-core/nascent -profile test,<docker/singularity> --outdir <OUTDIR> | ||
|
||
---------------------------------------------------------------------------------------- | ||
*/ | ||
|
||
params { | ||
config_profile_name = 'CoPRO PINTS Test profile' | ||
config_profile_description = 'Test dataset to check PINTS pipeline function(https://pints.yulab.org/tre_calling#part-iv-case-2)' | ||
|
||
// Input data | ||
input = "${projectDir}/tests/samplesheets/copro.csv" | ||
|
||
genome = 'hg38' | ||
assay_type = 'CoPRO' | ||
filter_bed = "https://pints.yulab.org/ref/examples/promoters_1kb_tss_centered.bed.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,23 @@ | ||
/* | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
Nextflow config file for running minimal tests | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
Defines input files and everything required to run a fast and simple pipeline test. | ||
|
||
Use as follows: | ||
nextflow run nf-core/nascent -profile test,<docker/singularity> --outdir <OUTDIR> | ||
|
||
---------------------------------------------------------------------------------------- | ||
*/ | ||
|
||
params { | ||
config_profile_name = 'GROcap PINTS Test profile' | ||
config_profile_description = 'Test dataset to check PINTS pipeline function(https://pints.yulab.org/tre_calling#part-iii-case-1)' | ||
|
||
// Input data | ||
input = "${projectDir}/tests/samplesheets/grocap.csv" | ||
|
||
genome = 'hg38' | ||
assay_type = 'GROcap' | ||
filter_bed = "https://pints.yulab.org/ref/examples/promoters_1kb_tss_centered.bed.gz" | ||
} |
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.