freejstone / CONGA

Implementation of the CONGA algorithm for a combined open and narrow search between experimental spectra and a peptide database.
MIT License
3 stars 1 forks source link

Add Docker build capabilities #8

Closed mriffle closed 1 year ago

mriffle commented 1 year ago

Added files for creating a Docker image to simplify running CONGA for Docker users.

CONGA Docker image can be built using: docker image build -t conga:latest . CONGA then can be run using:

docker run \
    --rm -it \
    -v `pwd`:`pwd` \
    -w `pwd` \
    conga:latest \
    python3 /usr/local/bin/CONGA.py <parameters>

Should consider putting on Docker Hub to make it even easier for users to run it.

mriffle commented 1 year ago

Decided to make some updates, will submit new PR