Mercurial > repos > onnodg > cdhit_analysis
view cdhit_analysis.sh @ 3:c6981ea453ae draft default tip
planemo upload for repository https://github.com/Onnodg/Naturalis_NLOOR/tree/main/NLOOR_scripts/process_clusters_tool commit ef31054ae26e19eff2f1b1f6c7979e39c47c0d5b-dirty
| author | onnodg |
|---|---|
| date | Fri, 24 Oct 2025 09:38:24 +0000 |
| parents | 706b7acdb230 |
| children |
line wrap: on
line source
#!/bin/bash SCRIPTDIR=$(dirname "$(readlink -f "$0")") python $SCRIPTDIR"/cdhit_analysis.py" "$@" # sanity check printf "Conda env: %s\n" "$CONDA_DEFAULT_ENV" printf "Python version: %s\n" "$(python --version | awk '{print $2}')" printf "Matplotlib version: %s\n" "$(python -c 'import matplotlib; print(matplotlib.__version__)')" printf "Pandas version: %s\n" "$(python -c 'import pandas; print(pandas.__version__)')" printf "Openpyxl version: %s\n" "$(python -c 'import openpyxl; print(openpyxl.__version__)')" printf "Bash version: %s\n" "${BASH_VERSION}" printf "SCRIPTDIR: %s\n\n" "$SCRIPTDIR"
