Skip to content

Commit

Permalink
Merge branch 'dev' into rename
Browse files Browse the repository at this point in the history
  • Loading branch information
GallVp committed Aug 19, 2024
2 parents 10fc01c + 89f53e8 commit cea7bae
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 29 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ jobs:
with:
version: "23.04.4"

- name: Disk space cleanup
uses: jlumbroso/free-disk-space@54081f138730dfa15788a46383842cd2f914a1be # v1.3.1

- name: Run stub-test
run: |
nextflow run \
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.4.0+dev - [15-Aug-2024]
## 0.4.0+dev - [19-Aug-2024]

### `Added`

Expand Down
16 changes: 4 additions & 12 deletions conf/test.config
Original file line number Diff line number Diff line change
@@ -1,15 +1,7 @@
params {
input = 'tests/minimal/assemblysheet.csv'
protein_evidence = 'https://raw.githubusercontent.com/Gaius-Augustus/BRAKER/f58479fe5bb13a9e51c3ca09cb9e137cab3b8471/example/proteins.fa'
}
input = "${projectDir}/tests/minimal/assemblysheet.csv"
protein_evidence = 'https://raw.githubusercontent.com/Gaius-Augustus/BRAKER/f58479fe5bb13a9e51c3ca09cb9e137cab3b8471/example/proteins.fa'

// Additional args to BRAKER should be passed through braker_extra_args
// The config below is only for test purposes
process {
withName: '.*:FASTA_BRAKER3:BRAKER3' {
ext.args = [
'-gff3',
'--gm_max_intergenic 10000 --skipOptimize' // Not recommended! Used here to make the test execute faster
].join(' ').trim()
}
braker_extra_args = '--gm_max_intergenic 10000 --skipOptimize' // Added for faster test execution! Do not use with actual data!
busco_lineage_datasets = 'eudicots_odb10'
}
5 changes: 3 additions & 2 deletions local_genepal
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,6 @@ nextflow run \
-resume \
$stub \
--max_cpus 8 \
--max_memory '32.GB'
# --eggnogmapper_db_dir ../dbs/emapperdb/5.0.2
--max_memory '32.GB' \
--eggnogmapper_tax_scope 33090 \
--eggnogmapper_db_dir ../dbs/emapperdb/5.0.2
25 changes: 13 additions & 12 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -57,19 +57,7 @@ params {
validationS3PathCheck = true
}

manifest {
name = 'genepal'
author = """Usman Rashid, Jason Shiller"""
homePage = 'https://github.com/PlantandFoodResearch/genepal'
description = """A NextFlow pipeline for pan-genome annotation"""
mainScript = 'main.nf'
nextflowVersion = '!>=23.04.4'
version = '0.4.0+dev'
doi = ''
}

includeConfig './conf/base.config'
includeConfig './conf/modules.config'

profiles {
apptainer {
Expand Down Expand Up @@ -104,3 +92,16 @@ trace {
enabled = true
file = "${params.outdir}/pipeline_info/execution_trace_${trace_timestamp}.txt"
}

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'
2 changes: 1 addition & 1 deletion tests/minimal/assemblysheet.csv
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
tag,fasta,is_masked
test,https://raw.githubusercontent.com/Gaius-Augustus/BRAKER/f58479fe5bb13a9e51c3ca09cb9e137cab3b8471/example/genome.fa,yes
a_thaliana,https://raw.githubusercontent.com/Gaius-Augustus/BRAKER/f58479fe5bb13a9e51c3ca09cb9e137cab3b8471/example/genome.fa,yes
3 changes: 2 additions & 1 deletion tests/minimal/params.json
Original file line number Diff line number Diff line change
@@ -1,5 +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"
"braker_extra_args": "--gm_max_intergenic 10000 --skipOptimize",
"busco_lineage_datasets": "eudicots_odb10"
}

0 comments on commit cea7bae

Please sign in to comment.