I did as you suggested to install the package, and the package was already installed in the environment. I am trying to run this rule:
rule gatk_register:
input:
f'/net/dunham/vol1/home/dennig2/yevo_pipeline/workflow/envs/src/GenomeAnalysisTK-3.7-0-gcfedb67.tar.bz2'
output:
f'{OUTPUT_DIR}/05_gatk/gatk_3.7_registered.txt'
conda:
'envs/main.yml'
shell:
"gatk-register {input} > {output}"
I tried running the shell command by itself outside of the pipeline, and came into this error:
-bash: gatk-register: command not found