Removing conda environment created in a snakemake workflow
Hello,
I'd like to remove the conda environments that I create within my Snakemake workflow. I used the picard.yaml file
channels:
- conda-forge
- bioconda
- defaults
dependencies:
- picard=3.2.0
to create the picard environment.
Normally, I would run mamba remove --name picard but I am not sure where I could find the picard environment created in the Snakemake workflow.
Thanks a lot for your help!
• 1,564 views
•
link
1 answer
They are usually installed in the folder .snakemake/conda or in the folder you specified with --conda-prefix.
• 0 views
•
link
Log in to answer this question.