-
Notifications
You must be signed in to change notification settings - Fork 5
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 #56 from PlantandFoodResearch/tests/public
Added a test profile based on public data
- Loading branch information
Showing
16 changed files
with
117 additions
and
81 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
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,7 @@ | ||
params { | ||
input = "${projectDir}/tests/minimal/assemblysheet.csv" | ||
protein_evidence = 'https://raw.githubusercontent.com/Gaius-Augustus/BRAKER/f58479fe5bb13a9e51c3ca09cb9e137cab3b8471/example/proteins.fa' | ||
|
||
braker_extra_args = '--gm_max_intergenic 10000 --skipOptimize' // Added for faster test execution! Do not use with actual data! | ||
busco_lineage_datasets = 'eudicots_odb10' | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,9 @@ | ||
includeConfig './conf/base.config' | ||
|
||
params { | ||
// Input/output options | ||
input = null | ||
protein_evidence = null | ||
eggnogmapper_db_dir = null | ||
eggnogmapper_tax_scope = null | ||
eggnogmapper_tax_scope = 1 | ||
rna_evidence = null | ||
liftoff_annotations = null | ||
orthofinder_annotations = null | ||
|
@@ -21,20 +19,20 @@ params { | |
skip_fastqc = false | ||
skip_fastp = false | ||
min_trimmed_reads = 10000 | ||
extra_fastp_args = "" | ||
extra_fastp_args = null | ||
save_trimmed = false | ||
remove_ribo_rna = false | ||
save_non_ribo_reads = false | ||
ribo_database_manifest = "${projectDir}/assets/rrna-db-defaults.txt" | ||
|
||
// RNAseq alignment options | ||
star_max_intron_length = 16000 | ||
star_align_extra_args = "" | ||
star_align_extra_args = null | ||
star_save_outputs = false | ||
save_cat_bam = false | ||
|
||
// Annotation options | ||
braker_extra_args = "" | ||
braker_extra_args = null | ||
braker_save_outputs = false | ||
liftoff_coverage = 0.9 | ||
liftoff_identity = 0.9 | ||
|
@@ -59,15 +57,26 @@ params { | |
validationS3PathCheck = true | ||
} | ||
|
||
manifest { | ||
name = 'pangene' | ||
author = """Usman Rashid, Jason Shiller""" | ||
homePage = 'https://github.com/PlantandFoodResearch/pangene' | ||
description = """A NextFlow pipeline for pan-genome annotation""" | ||
mainScript = 'main.nf' | ||
nextflowVersion = '!>=23.04.4' | ||
version = '0.4.0' | ||
doi = '' | ||
includeConfig './conf/base.config' | ||
|
||
profiles { | ||
apptainer { | ||
apptainer.enabled = true | ||
apptainer.autoMounts = true | ||
apptainer.registry = 'quay.io' | ||
} | ||
|
||
docker { | ||
docker.enabled = true | ||
docker.runOptions = '-u $(id -u):$(id -g) --platform=linux/amd64' | ||
docker.registry = 'quay.io' | ||
} | ||
|
||
test { includeConfig 'conf/test.config' } | ||
} | ||
|
||
plugins { | ||
id '[email protected]' | ||
} | ||
|
||
def trace_timestamp = new java.util.Date().format( 'yyyy-MM-dd_HH-mm-ss') | ||
|
@@ -84,8 +93,15 @@ trace { | |
file = "${params.outdir}/pipeline_info/execution_trace_${trace_timestamp}.txt" | ||
} | ||
|
||
plugins { | ||
id '[email protected]' | ||
manifest { | ||
name = 'pangene' | ||
author = """Usman Rashid, Jason Shiller""" | ||
homePage = 'https://github.com/PlantandFoodResearch/pangene' | ||
description = """A NextFlow pipeline for pan-genome annotation""" | ||
mainScript = 'main.nf' | ||
nextflowVersion = '!>=23.04.4' | ||
version = '0.4.0+dev' | ||
doi = '' | ||
} | ||
|
||
includeConfig './conf/modules.config' |
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
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,2 @@ | ||
tag,fasta,is_masked | ||
a_thaliana,https://raw.githubusercontent.com/Gaius-Augustus/BRAKER/f58479fe5bb13a9e51c3ca09cb9e137cab3b8471/example/genome.fa,yes |
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,6 @@ | ||
{ | ||
"input": "tests/minimal/assemblysheet.csv", | ||
"protein_evidence": "https://raw.githubusercontent.com/Gaius-Augustus/BRAKER/f58479fe5bb13a9e51c3ca09cb9e137cab3b8471/example/proteins.fa", | ||
"braker_extra_args": "--gm_max_intergenic 10000 --skipOptimize", | ||
"busco_lineage_datasets": "eudicots_odb10" | ||
} |
Oops, something went wrong.