Erfan Shekarriz
Erfan Shekarriz
Yes I think for the time being I am simply running each parallel on a cluster using Snakemake so that the memory allocation is adjusted using a formula based on...
UPDATES: I've come closer to the solution here. If I restart the server and do NOT set ```export TMPDIR=tmp``` then setting the output directory ```-w``` works. Is there a way...
I've noticed that putting the function into a list returns a list of TopHits objects: ```python tophits_list = list(hmmsearch(hmm_file, seqs, cpus=cores_n, Z=Z_val, bit_cutoffs=bitcutoff)) ``` How would I then be able...
I've found an easy workaround with: ```python with HMMFile(hmmdb) as hmm_file: hmms = list(hmm_file) Z_val = len(hmms) ``` but I'll still keep the issue open since an attribute for the...
Nevermind! I seem to have found it. ``` ranks
for conda beginners, you can use a one-liner! `conda install -c conda-forge -c bioconda tiara numpy=1.19.4 whokaryote `. Make sure to create an environment pre-hand and activate it first .e.g...
Also wanted to add that adding a ```\``` to escape the ```:``` pythonic dictionary format works, but It makes the name printed also have a backlash which is undesirable.
> May I ask where you switched this off? In one of the rules? I cannot find this in the program file or in the rules of the pipeline I...