We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30be029 commit 52699b3Copy full SHA for 52699b3
1 file changed
features/src/workbench-tools/install.sh
@@ -91,14 +91,15 @@ CONDA_PACKAGES_2=(
91
"vcftools"
92
)
93
94
-if [[ "${CLOUD}" == "gcp" ]]; then
95
- CONDA_PACKAGES_2+=("dsub")
96
-fi
97
-
98
mkdir -p "${WORKBENCH_TOOLS_DIR}"
99
mamba create --prefix "${WORKBENCH_TOOLS_DIR}/1" -c bioconda -y "${CONDA_PACKAGES_1[@]}"
100
mamba create --prefix "${WORKBENCH_TOOLS_DIR}/2" -c bioconda -y "${CONDA_PACKAGES_2[@]}"
101
+# Install dsub via pip if on GCP. The conda version is outdated.
+if [[ "${CLOUD}" == "gcp" ]]; then
+ "${WORKBENCH_TOOLS_DIR}/2/bin/pip" install dsub
+fi
102
+
103
# Force the perl and python scripts to use the correct perl/python
104
find -L "${WORKBENCH_TOOLS_DIR}/2/bin" -type f -executable -exec \
105
sed -i --follow-symlinks \
0 commit comments