Hi,
I'm trying to test agnostos update module (db_update) using a small test set of sequences (50 or so). I've been running the snakemake pipeline manually going through each smk file, starting with gene_prediction.smk to mmseqs_clustering_results.smk. I am now at spurious_shadows.
When I run this it errors out, and I'm not sure if its b/c there is not results or if its something with the code. So I decided to run each command of the shell portion from spurious_shadows.smk as ouputed in the snakemake log files.
When I run the hmmer search on line 61 of
{params.mpi_runner} {params.hmmer_bin} --mpi --cut_ga -Z "${{N}}" --domtblout {params.hmmout} -o {params.hmmlog} {params.antifamdb} {input.fasta} 2>{log.err} 1>{log.out}
followed by line 69
grep -v '^#' {params.hmmout} > {params.spur}.tmp || true > {params.spur}.tmp 2>>{log.err}
The resulting tmp file is empty, and looking at the hmmout file it also has no hits. With the tmp file being empty I can not proceed to the next steps # 2. Detection of shadow ORFs line 80.
So my question is, does it just die there and I can not proceed further pass spurious_shadow and to step cluster_pfam_annotation?
thanks!
Hi,
I'm trying to test agnostos update module (
db_update) using a small test set of sequences (50 or so). I've been running the snakemake pipeline manually going through eachsmkfile, starting withgene_prediction.smktommseqs_clustering_results.smk. I am now atspurious_shadows.When I run this it errors out, and I'm not sure if its b/c there is not results or if its something with the code. So I decided to run each command of the shell portion from
spurious_shadows.smkas ouputed in the snakemake log files.When I run the hmmer search on line 61 of
followed by line 69
The resulting tmp file is empty, and looking at the hmmout file it also has no hits. With the tmp file being empty I can not proceed to the next steps
# 2. Detection of shadow ORFsline 80.So my question is, does it just die there and I can not proceed further pass
spurious_shadowand to stepcluster_pfam_annotation?thanks!