Create the environments using yaml files and conda
conda create -f <yaml_name>.yml -n <env_name>
- Check if package exists in channels (bioconda)
conda search <pagkage_name> -c bioconda
You need to type the -p that specifies a path, and the full path of the virtual environment
conda remove -p /envs/env_name --all
- Create different environments and install packages using yaml files.
- Create a workflow from running one script in bash.
- Connect the variables by defining them from the main script.