GHOST-MP on Docker http://www.bi.cs.titech.ac.jp/ghostmp/
1.0K
GHOST-MP is a parallel sequence similarity search tool. It searches for similar sequences among nucleotide query sequences and amino acid sequence database like BLASTX. http://www.bi.cs.titech.ac.jp/ghostmp/
db.fasta and query.fasta.docker run -it meta1127/ghostmp
./ghostmp_makedb -i db.fasta -o db
mpirun -n NUM_PROCESS ./ghostmp_search -i query.fasta -d db -o result
...
exit
In this command, your current directory $(pwd) will be mounted to [/data] path in container.
docker run -it -v $(pwd):/data/ meta1127/ghostmp
./ghostmp_makedb -i /data/db.fasta -o /data/db
mpirun -n NUM_PROCESS ./ghostmp_search -i /data/query.fasta -d /data/db -o /data/result
...
exit
# git clone
git clone https://github.com/metaVariable/GHOST-MP-Docker.git
cd GHOST-MP-Docker
# build image
docker build . -t meta1127/ghostmp
Content type
Image
Digest
Size
146.2 MB
Last updated
over 9 years ago
docker pull meta1127/ghost-mp-docker