Mercurial > repos > onnodg > cdhit_analysis
annotate cdhit_analysis.sh @ 4:e64af72e1b8f draft default tip
planemo upload for repository https://github.com/Onnodg/Naturalis_NLOOR/tree/main/NLOOR_scripts/process_clusters_tool commit 4017d38cf327c48a6252e488ba792527dae97a70-dirty
| author | onnodg |
|---|---|
| date | Mon, 15 Dec 2025 16:44:40 +0000 |
| parents | 706b7acdb230 |
| children |
| rev | line source |
|---|---|
|
2
706b7acdb230
planemo upload for repository https://github.com/Onnodg/Naturalis_NLOOR/tree/main/NLOOR_scripts/process_clusters_tool commit c2020ecc91cea0c8cf7439180cf796743c838b4d-dirty
onnodg
parents:
diff
changeset
|
1 #!/bin/bash |
|
706b7acdb230
planemo upload for repository https://github.com/Onnodg/Naturalis_NLOOR/tree/main/NLOOR_scripts/process_clusters_tool commit c2020ecc91cea0c8cf7439180cf796743c838b4d-dirty
onnodg
parents:
diff
changeset
|
2 |
|
706b7acdb230
planemo upload for repository https://github.com/Onnodg/Naturalis_NLOOR/tree/main/NLOOR_scripts/process_clusters_tool commit c2020ecc91cea0c8cf7439180cf796743c838b4d-dirty
onnodg
parents:
diff
changeset
|
3 SCRIPTDIR=$(dirname "$(readlink -f "$0")") |
|
706b7acdb230
planemo upload for repository https://github.com/Onnodg/Naturalis_NLOOR/tree/main/NLOOR_scripts/process_clusters_tool commit c2020ecc91cea0c8cf7439180cf796743c838b4d-dirty
onnodg
parents:
diff
changeset
|
4 python $SCRIPTDIR"/cdhit_analysis.py" "$@" |
|
706b7acdb230
planemo upload for repository https://github.com/Onnodg/Naturalis_NLOOR/tree/main/NLOOR_scripts/process_clusters_tool commit c2020ecc91cea0c8cf7439180cf796743c838b4d-dirty
onnodg
parents:
diff
changeset
|
5 |
|
706b7acdb230
planemo upload for repository https://github.com/Onnodg/Naturalis_NLOOR/tree/main/NLOOR_scripts/process_clusters_tool commit c2020ecc91cea0c8cf7439180cf796743c838b4d-dirty
onnodg
parents:
diff
changeset
|
6 # sanity check |
|
706b7acdb230
planemo upload for repository https://github.com/Onnodg/Naturalis_NLOOR/tree/main/NLOOR_scripts/process_clusters_tool commit c2020ecc91cea0c8cf7439180cf796743c838b4d-dirty
onnodg
parents:
diff
changeset
|
7 printf "Conda env: %s\n" "$CONDA_DEFAULT_ENV" |
|
706b7acdb230
planemo upload for repository https://github.com/Onnodg/Naturalis_NLOOR/tree/main/NLOOR_scripts/process_clusters_tool commit c2020ecc91cea0c8cf7439180cf796743c838b4d-dirty
onnodg
parents:
diff
changeset
|
8 printf "Python version: %s\n" "$(python --version | awk '{print $2}')" |
|
706b7acdb230
planemo upload for repository https://github.com/Onnodg/Naturalis_NLOOR/tree/main/NLOOR_scripts/process_clusters_tool commit c2020ecc91cea0c8cf7439180cf796743c838b4d-dirty
onnodg
parents:
diff
changeset
|
9 printf "Matplotlib version: %s\n" "$(python -c 'import matplotlib; print(matplotlib.__version__)')" |
|
706b7acdb230
planemo upload for repository https://github.com/Onnodg/Naturalis_NLOOR/tree/main/NLOOR_scripts/process_clusters_tool commit c2020ecc91cea0c8cf7439180cf796743c838b4d-dirty
onnodg
parents:
diff
changeset
|
10 printf "Pandas version: %s\n" "$(python -c 'import pandas; print(pandas.__version__)')" |
|
706b7acdb230
planemo upload for repository https://github.com/Onnodg/Naturalis_NLOOR/tree/main/NLOOR_scripts/process_clusters_tool commit c2020ecc91cea0c8cf7439180cf796743c838b4d-dirty
onnodg
parents:
diff
changeset
|
11 printf "Openpyxl version: %s\n" "$(python -c 'import openpyxl; print(openpyxl.__version__)')" |
|
706b7acdb230
planemo upload for repository https://github.com/Onnodg/Naturalis_NLOOR/tree/main/NLOOR_scripts/process_clusters_tool commit c2020ecc91cea0c8cf7439180cf796743c838b4d-dirty
onnodg
parents:
diff
changeset
|
12 printf "Bash version: %s\n" "${BASH_VERSION}" |
|
706b7acdb230
planemo upload for repository https://github.com/Onnodg/Naturalis_NLOOR/tree/main/NLOOR_scripts/process_clusters_tool commit c2020ecc91cea0c8cf7439180cf796743c838b4d-dirty
onnodg
parents:
diff
changeset
|
13 printf "SCRIPTDIR: %s\n\n" "$SCRIPTDIR" |
