You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To resolve an iqtree error - big thanks to Gebremeskel Mamu Werid for posting this on Vula
#1. To uninstall the iqtree package, you can use:
sudo apt remove iqtree
# or
pip uninstall iqtree
#2. update your system:
sudo apt-get update
#3. install a specific version of iqtree package:
conda install -c bioconda -c defaults iqtree=1.6.12
#4. update your system:
sudo apt-get update
#5. check if you installed the right version of iqtree
iqtree --version
To install figtree
sudo apt install figtree
# the password is manager
To install sleuth for module 7:
# Begin by running R
R
BiocManager::install()
install.packages(“devtools”)
BiocManager::install(“pachterlab/sleuth”)
# continue with the practical from here
to install tximportData in R
# Begin by running R
R
BiocManager::install("tximportData")
# continue with the practical from here
To install salmon for mod 8:
conda create -n salmon salmon
conda activate salmon
# run your salmon commands
# deactivate the environment when done
conda deactivate