changed the make_ss script to only set the BLASTMAT variable if it has not already been set. This provides the freedom to use a blast that hasn't been installed in the main directory

This commit is contained in:
Brandon Frenz 2024-05-20 11:45:29 -07:00
parent fa35433f8b
commit 64da0dcf4a

View file

@ -1,7 +1,9 @@
#!/bin/bash #!/bin/bash
# From: https://github.com/RosettaCommons/RoseTTAFold # From: https://github.com/RosettaCommons/RoseTTAFold
export BLASTMAT=$PIPE_DIR/blast-2.2.26/data/ if [ -z "${BLASTMAT}" ]; then
export BLASTMAT=$PIPE_DIR/blast-2.2.26/data/
fi
DATADIR="$CONDA_PREFIX/share/psipred_4.01/data" DATADIR="$CONDA_PREFIX/share/psipred_4.01/data"
echo $DATADIR echo $DATADIR