forked from qbic-pipelines/rnadeseq
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request qbic-pipelines#213 from WackerO/smrna
Add smrnaseq functionality -->check the test in a follow-up PR
- Loading branch information
Showing
33 changed files
with
36,348 additions
and
169 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ work/ | |
data/ | ||
results/ | ||
.DS_Store | ||
testdata/ | ||
testing/ | ||
testing* | ||
*.pyc | ||
|
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
Large diffs are not rendered by default.
Oops, something went wrong.
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,32 @@ | ||
/* | ||
* ------------------------------------------------- | ||
* Nextflow config file for running tests | ||
* ------------------------------------------------- | ||
* Defines bundled input files and everything required | ||
* to run a fast and simple test. Use as follows: | ||
* nextflow run qbic-pipelines/rnadeseq -profile test_smrnaseq | ||
*/ | ||
|
||
params { | ||
config_profile_name = 'Test smrnaseq' | ||
config_profile_description = 'Minimal test dataset to check pipeline function' | ||
// Limit resources so that this can run on Travis | ||
max_cpus = 2 | ||
max_memory = 6.GB | ||
max_time = 48.h | ||
// Input data | ||
input = 'testdata/smrnaseq/samplesheet.tsv' | ||
gene_counts = 'testdata/smrnaseq/counts' | ||
model = 'testdata/smrnaseq/design.txt' | ||
logFC_threshold = 1 | ||
project_summary = 'https://raw.githubusercontent.com/qbic-pipelines/rnadeseq/dev/testdata/summary.tsv' | ||
software_versions = 'https://raw.githubusercontent.com/qbic-pipelines/rnadeseq/dev/testdata/software_versions_smrnaseq.yml' | ||
genelist = 'testdata/smrnaseq/requested_genes.txt' | ||
input_type = 'smrnaseq' | ||
run_pathway_analysis = true | ||
genome = 'GRCh37' | ||
batch_effect = true | ||
set_background = false // This is solely to get some enriched pathways so that the github tests also check the pathway analysis output | ||
// species_library = "org.Hs.eg.db" | ||
// organism = "hsapiens" | ||
} |
Oops, something went wrong.