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 2afeb16 commit 69a5a57Copy full SHA for 69a5a57
SequenceAnalysis/pipeline_code/sequence_tools_install.sh
@@ -282,8 +282,13 @@ then
282
rm -Rf DISCVRSeq*
283
rm -Rf ${LKTOOLS_DIR}/DISCVRSeq.jar
284
285
- wget $WGET_OPTS https://github.com/BimberLab/DISCVRSeq/releases/download/1.29/DISCVRSeq-1.29.jar
286
- cp DISCVRSeq-1.29.jar ${LKTOOLS_DIR}/DISCVRSeq.jar
+ curl -s https://api.github.com/repos/BimberLab/DISCVRSeq/releases/latest \
+ | grep 'browser_download_url.*jar' \
287
+ | cut -d : -f 2,3 \
288
+ | tr -d \" \
289
+ | wget -O DISCVRseq.jar -qi -
290
+
291
+ cp DISCVRSeq.jar ${LKTOOLS_DIR}/DISCVRSeq.jar
292
fi
293
294
0 commit comments