Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/applicativesystem/genome-assembly-apptainer

multi-sif-apptainer images for genome assembly
https://github.com/applicativesystem/genome-assembly-apptainer

apptainer apptainer-container bioinformatics devops-platform devops-tools genome-assembly hifiasm system-administration verkko

Last synced: 23 days ago
JSON representation

multi-sif-apptainer images for genome assembly

Awesome Lists containing this project

README

        

# genome-assembly-pacbiohifi-apptainer

- apptainer for the genome assembly coming from the pacbiohifi reads.
- it includes two genome assembler and one is hifiasm and the other is verkko.
- The benchmark for the assembly for these assemblers are located at my another repository [genomeasembly-pacbiohifi](https://github.com/codecreatede/genomeassembly-pacbiohifi)

- to invoke the hifiasm apptainer
```
module load singularity
apptainer run hifiasm.sif hifiasm
```
- to build and invoke the verkko conda based apptainer. I wrote the verkko yaml so that you can directly import and run with in the apptainer.
```
module load singularity
apptainer build verkko.sif verkko.def
echo ".opt/conda/etc/profile.d/conda.sh" >> $ENV_PATH
```
- inspect the images after the build
```
for i in *.sif; do apptainer inspect ${i}; done
``

Gaurav Sablok