Skip to content

Commit

Permalink
Updated README and snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
GallVp committed Dec 11, 2024
1 parent f980772 commit ab3ae37
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 4 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,12 @@
- Optionally, allow or remove iso-forms
- Remove BRAKER models from Liftoff loci
- Merge Liftoff and BRAKER models
- Optionally, remove models with ORFs shorter than `N` amino acids
- Optionally, remove models without any EggNOG-mapper hits
- [EggNOG-mapper](https://github.com/eggnogdb/eggnog-mapper): Add functional annotation to gff
- [GenomeTools](https://github.com/genometools/genometools): GFF format validation
- [GffRead](https://github.com/gpertea/gffread): Extraction of protein sequences
- [GffRead](https://github.com/gpertea/gffread)
- Extraction of protein sequences
- Optionally, remove models with ORFs shorter than `N` amino acids
- [OrthoFinder](https://github.com/davidemms/OrthoFinder): Perform phylogenetic orthology inference across genomes
- [GffCompare](https://github.com/gpertea/gffcompare): Compare and benchmark against an existing annotation
- [BUSCO](https://gitlab.com/ezlab/busco): Completeness statistics for genome and annotation through proteins
Expand Down
3 changes: 3 additions & 0 deletions tests/minimal/main.nf.test
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ nextflow_pipeline {
['**']
)

def summary_stats = (Map) new groovy.json.JsonSlurper().parseText(file("$outputDir/genepal_data/summary_stats.json").text)

assertAll(
{ assert workflow.success},
{ assert snapshot(
Expand All @@ -46,6 +48,7 @@ nextflow_pipeline {
'versions': removeNextflowVersion("$outputDir/pipeline_info/genepal_software_mqc_versions.yml"),
'stable paths': stable_path,
'stable names': getRelativePath(stable_name, outputDir),
'summary_stats': summary_stats
]
).match() }
)
Expand Down
17 changes: 15 additions & 2 deletions tests/minimal/main.nf.test.snap
Original file line number Diff line number Diff line change
Expand Up @@ -90,13 +90,26 @@
"genepal_report.html",
"multiqc_report.html",
"pipeline_info"
]
],
"summary_stats": {
"stats": [
{
"ID": "a_thaliana",
"Genes": 252,
"mRNA": 265,
"CDS": 1340,
"Exons": 1340,
"Intron": 1075,
"Non canon splice sites": 18
}
]
}
}
],
"meta": {
"nf-test": "0.9.2",
"nextflow": "24.04.4"
},
"timestamp": "2024-12-11T21:49:09.751422"
"timestamp": "2024-12-12T09:36:52.952048"
}
}

0 comments on commit ab3ae37

Please sign in to comment.