question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Clinker just stalls without producing output?

See original GitHub issue

Hello,

I am running Clinker on a server (installed via conda) for five genomes (from the same genus); gbk files were downloaded from GenBank. I use the following command: clinker ./genomes/*.gbk -p results.html The problem is that after ~2.5 hours, it seems that the procedure stalls without producing any output. I found that during these 2.5 hours, python processes (one per CPU) were active, but then they stopped, and nothing happened after.
When I do not align the clusters (-na option), everything works, and the desired output file is produced (although without cluster alignments, it not useful).

Any ideas what may cause this?

Thank you!

Issue Analytics

  • State:open
  • Created 2 years ago
  • Comments:5 (2 by maintainers)

github_iconTop GitHub Comments

1reaction
gamcilcommented, Jun 23, 2021

A while back I added the --ranges argument where you can specify genomic coordinates to be extracted (e.g. --ranges scaffold_1:10000-50000). Though, some people were having issues with it (https://github.com/gamcil/clinker/issues/62) and I haven’t had time to go back and look, so just check if you can get it working. Otherwise, there’s bound to be scripts around to extract regions from GenBank files, or you can do it through graphical software like Geneious.

0reactions
hyphaltipcommented, Aug 4, 2022

to extract ranges of genomes this is very easy with biopython eg here’s part of one script that does this https://github.com/stajichlab/GAG_cluster_1kfg/blob/7c14b29bd3a9f1401e0896010930a3f7a5ede5f4/scripts/build_cluster_genbank.py#L155

from Bio import SeqIO
seq = SeqIO.read("GENBANKFILE.gb", "genbank")
left = 100
right = 10000
slice = seq[ left:right ] # cut a slice out
SeqIO.write(slice, "GENBANK_SLICE.gbk", "genbank")
Read more comments on GitHub >

github_iconTop Results From Across the Web

Issues · gamcil/clinker - GitHub
Clinker just stalls without producing output ? #72 opened on Jun 21, 2021 by Arzamasov.
Read more >
Clinkerization - Cement Plant Optimization
The process of clinkerization signifies conversion of raw meal into clinker minerals mainly consisting of C4AF(Aluminoferite), C3A(Aluminite), C2S(Belite) ...
Read more >
Cement Kilns: Clinker Thermochemistry
The effect of increasing the liquid production is to lower the temperature at which an acceptable level of free lime can be achieved....
Read more >
The ever-shrinking clinker factor: Threat or opportunity?
However, that's strictly a temporary sequestration, since the carbon sequestered is rapidly given up when the tree dies and rots. Wood used in ......
Read more >
Clinker Burning Kinetics and Mechanism - DTU Orbit
numbers symbolize the importance of concrete and it is not surprising, that the production of its key compound, cement, is not only one...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found