-
Notifications
You must be signed in to change notification settings - Fork 36
General refactor and format #142
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
base: dev
Are you sure you want to change the base?
Changes from all commits
5e5d422
451da46
045949b
753ced9
90ade35
376ad15
0dd469d
078cd38
47f4592
d533807
8360dc3
153c5d4
23be7a6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,12 +14,12 @@ process { | |
resourceLimits = [ | ||
cpus: 2, | ||
memory: '6.GB', | ||
time: '1.h' | ||
time: '1.h', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I thought the last item doesn't require a comma? |
||
] | ||
} | ||
|
||
params { | ||
config_profile_name = 'Test profile' | ||
config_profile_name = 'Test profile' | ||
config_profile_description = 'Minimal test dataset to check pipeline function' | ||
|
||
// Limit resources so that this can run on GitHub Actions | ||
|
@@ -37,13 +37,13 @@ params { | |
|
||
// Genome references | ||
//genome = 'R64-1-1' | ||
host_fasta_genome = "data/GRCh38.p13_sub.fasta" | ||
host_fasta_genome = "data/GRCh38.p13_sub.fasta" | ||
host_gff = "data/Human_gencode.v33_sub.gff3" | ||
|
||
pathogen_fasta_transcripts = "data/SL1344_sub_transcriptome.fasta" | ||
host_fasta_transcripts = "data/Human_gencode.v33_sub_transcriptome.fasta" | ||
libtype = "" | ||
|
||
pathogen_fasta_genome = "data/SL1344_sub.fasta" | ||
pathogen_fasta_genome = "data/SL1344_sub.fasta" | ||
pathogen_gff = "data/SL1344_sub.gff3" | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,25 +5,25 @@ | |
Defines input files and everything required to run a fast and simple pipeline test. | ||
|
||
Use as follows: | ||
nextflow run nf-core/dualrnaseq -profile test_hackathon,<docker/singularity> --outdir <OUTDIR> | ||
nextflow run nf-core/dualrnaseq -profile test_2_fasta_pathogen,<docker/singularity> --outdir <OUTDIR> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I agree the naming should be different. This naming doesn't quite make sense as the fasta contains host and pathogen reads. |
||
|
||
---------------------------------------------------------------------------------------- | ||
*/ | ||
|
||
params { | ||
config_profile_name = 'Test profile' | ||
config_profile_name = 'Test profile' | ||
config_profile_description = 'Minimal test dataset to check pipeline function' | ||
|
||
// Limit resources so that this can run on GitHub Actions | ||
max_cpus = 2 | ||
max_cpus = 2 | ||
max_memory = '6.GB' | ||
max_time = '6.h' | ||
max_time = '6.h' | ||
|
||
input = "https://raw.githubusercontent.com/nf-core/test-datasets/dualrnaseq/spreadsheet/spreadsheet.csv" | ||
input = "https://raw.githubusercontent.com/nf-core/test-datasets/dualrnaseq/spreadsheet/spreadsheet.csv" | ||
|
||
// Genome references | ||
|
||
fasta_host = "https://github.com/nf-core/test-datasets/raw/dualrnaseq/references/GRCh38.p13_sub.fasta" | ||
fasta_host = "https://github.com/nf-core/test-datasets/raw/dualrnaseq/references/GRCh38.p13_sub.fasta" | ||
gff_host = "https://github.com/nf-core/test-datasets/raw/dualrnaseq/references/Human_gencode.v33_sub.gff3" | ||
gff_host_tRNA = "data/human.tRNAs.gff.gz" | ||
transcript_fasta_pathogen = "data/SL1344_sub_transcriptome.fasta" | ||
|
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 see what you've done here, and I'm fine with it. There is a general approach that people seem to like anf that the template generates that the equals sighs are vertical.