Skip to content
Snippets Groups Projects
Commit d6710a9a authored by B13nch3n's avatar B13nch3n
Browse files

Use run_qmean.py in entrypoint

parent 88b0a9b7
No related branches found
No related tags found
No related merge requests found
......@@ -349,7 +349,7 @@ RUN groupadd --gid $QMEAN_GROUP_ID $QMEAN_GROUP; \
/usr/bin/chown -R $QMEAN_USER /data
# Copy script to run QMEANDisCo
COPY run-qmeandisco.py /qmean/
COPY run_qmean.py /qmean/
COPY predict_ss_sa.pl /qmean/
COPY homology_sa.pl /qmean/
COPY getACCAligns.pl /qmean/
......
......@@ -11,7 +11,11 @@ if [ $# -eq 0 ]; then
: #set -- celery -A qm.clryschdlr worker --loglevel=info
else
if [ $1 == "qmeandisco" ]; then
set -- /qmean/run-qmeandisco.py "${@:2}"
set -- /qmean/run_qmean.py --method QMEANDisCo "${@:2}"
elif [ $1 == "qmean" ]; then
set -- /qmean/run_qmean.py --method QMEAN "${@:2}"
elif [ $1 == "qmeanbrane" ]; then
set -- /qmean/run_qmean.py --method QMEANBrane "${@:2}"
fi
fi
......
File mode changed from 100644 to 100755
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment