Clinker just stalls without producing output?
See original GitHub issueHello,
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:
- Created 2 years ago
- Comments:5 (2 by maintainers)
Top 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 >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
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.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