Skip to content

Commit

Permalink
uninstall-dicast.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
Amit Fenn committed Dec 9, 2021
1 parent 91d2ecb commit d51195e
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions scripts/uninstall-dicast.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/bin/bash
tools=( asgal aspli eventpointer irfinder majiq sgseq spladder whippet subjunc bbmap contextmap crac dart gsnap hisat minimap mapsplice segemehl )

dockerhub_prefix = "dicastproj/dicast"
locally_built_prefix = "dicast/"

for image in ${tools[*]}; do docker rmi $dockerhub_prefix:$image && docker rmi ${locally_built_prefix}${image}:0.2 ; done
conda activate base
conda remove --name dicast-snakemake --all
echo " You can now delete this git folder and everything it contains."

0 comments on commit d51195e

Please sign in to comment.