This is a test version of Biostars. For the public version, visit https://www.biostars.org.
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!

snakemake

1 answer

They are usually installed in the folder .snakemake/conda or in the folder you specified with --conda-prefix.

Log in to answer this question.