-
Notifications
You must be signed in to change notification settings - Fork 26
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
Test count #141
Merged
Merged
Test count #141
Changes from 17 commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
97ffcd5
Add test for count table
LaurenceKuhl 2558ab9
Fix path
LaurenceKuhl 48b834d
Revert to the old nomenclature for now
LaurenceKuhl 01b7057
Temporarily use my path until i fix the github issue
LaurenceKuhl bd49779
Current tries to make the input non mandatory
LaurenceKuhl 481a0bb
Fix curly brackets
LaurenceKuhl 43bd503
Fix curly brackets
LaurenceKuhl a065a28
fix curly brackets..
LaurenceKuhl e9acfb1
Trying to add empty channels
LaurenceKuhl 676a940
Fix input count file
LaurenceKuhl b2844dc
revert back download_pipeline to fix linting issue
LaurenceKuhl ba2b4c3
Fix linting
LaurenceKuhl df969dc
Fixl inting
LaurenceKuhl 31de28a
Merge branch 'dev' into test_count
LaurenceKuhl 59fd55f
Update conf/test_screening_count_table.config
LaurenceKuhl fd9e43c
Update conf/test_screening_count_table.config
LaurenceKuhl bb48406
Update conf/test_screening_count_table.config
LaurenceKuhl 7248dda
Update conf/test_screening_count_table.config
LaurenceKuhl 1c88a22
Update subworkflows/local/utils_nfcore_crisprseq_pipeline/main.nf
LaurenceKuhl e39eb47
Remove if statement
LaurenceKuhl 6d228d4
Fix link
LaurenceKuhl 148010f
Fix the count test fail
LaurenceKuhl 429d2f8
Merge branch 'dev' into test_count
LaurenceKuhl bfe2142
Fix typos
LaurenceKuhl 4be630d
Merge branch 'test_count' of https://github.com/LaurenceKuhl/crisprse…
LaurenceKuhl 387fb9b
Ran pre commit
LaurenceKuhl e7935bd
Update download pipeline
LaurenceKuhl 155c62e
Merge branch 'dev' of https://github.com/nf-core/crisprseq into test_…
mirpedrol af1cbe4
move validation of input channels to the main if block
mirpedrol 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,28 @@ | ||
/* | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
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/crisprseq -profile test_screening,<conda/docker/singularity> --outdir <OUTDIR> | ||
LaurenceKuhl marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
---------------------------------------------------------------------------------------- | ||
*/ | ||
|
||
params { | ||
config_profile_name = 'Test screening profile with an input count table' | ||
config_profile_description = 'Minimal test dataset to check pipeline function' | ||
|
||
// Limit resources so that this can run on GitHub Actions | ||
max_cpus = 2 | ||
max_memory = '6.GB' | ||
max_time = '6.h' | ||
|
||
// Input data | ||
count_table = params.pipelines_testdata_base_path + "crisprseq/testdata/count_table.tsv" | ||
analysis = 'screening' | ||
mle_design_matrix = params.pipelines_testdata_base_path + "crisprseq/testdata/design_matrix.txt" | ||
contrasts = params.pipelines_testdata_base_path + "crisprseq/testdata/rra_contrasts.txt" | ||
|
||
} |
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
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
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.
I think the changes on this file come from the template update, the previous versions are the correct ones, the most recent.