Entering edit mode
8 weeks ago
hpapoli
▴
150
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!