-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Genome dereplication using skani (#663)
* add_skani * add target_rule * skani run * added skani 2 parquet * skani2 parquet tested * species clustering with skani * add info about translation table to cluter species * rename genomes with skani * drop dRep * new bin report ugly * formating * use upercase names as in checkm2 * use upper case for quality headers * fix upercase * fix report * formating * remove drep option from config * make pandas2 ready * formatig * make output of binning, genomes and genecatalog temp * recalibrate quality * formating * move raw bin_finfo to subfolder * path in raw bins
- Loading branch information
Showing
21 changed files
with
770 additions
and
406 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
channels: | ||
- conda-forge | ||
- bioconda | ||
- defaults | ||
dependencies: | ||
- skani=0.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,7 @@ channels: | |
- bioconda | ||
- defaults | ||
dependencies: | ||
- galah | ||
- python=3.11 | ||
- pandas=2 | ||
- networkx=3.1 | ||
- scipy=1.10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,52 @@ | ||
<html> | ||
<head> | ||
|
||
<title>{binner} Metagenome-Atlas - Bin Report</title> | ||
<head> | ||
|
||
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script> | ||
<title>{binner} Metagenome-Atlas - Bin Report</title> | ||
|
||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css"> | ||
<style type="text/css"> | ||
{css_content} | ||
</style> | ||
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script> | ||
|
||
</head> | ||
<body> | ||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css"> | ||
<style type="text/css"> | ||
{css_content} | ||
</style> | ||
|
||
</head> | ||
|
||
<body> | ||
|
||
|
||
<div class="container" id="notebook-container"> | ||
|
||
<h1>Bin Report for Binner {binner}</h1> | ||
|
||
<p>Genome completeness and contamination, and taxonomy were estimated unsing CheckM2. </p> | ||
<p>Bins might represent the same species assembled from different samples. During the De-replication step only the gneome with the highest quality will be selected as representative for the species/cluster.</p> | ||
<p>For all the information see the table '{div[input_file]}'</p> | ||
{div[QualityScore]} | ||
<p>For all the information see the file {div[input_file]}</p> | ||
|
||
<h2>Number of genomes<h/2></h> | ||
{div[table]} | ||
|
||
<p>"Good quality" refers to the standard of Completeness > 90% and Contamination < 5%. Also called high-quality or near-complete. But t-RNA/r-RNA presence is not evaluated. It is less stingent than Quality Score > 90. </p> | ||
|
||
<h2>Quality for all bins<h/2> | ||
{div[2D]} | ||
|
||
|
||
<h2>Quality for Species representatives<h/2> | ||
{div[2Dsp]} | ||
|
||
|
||
|
||
{div[2D]} | ||
<h2>Quality score by Sample <h/2> | ||
|
||
|
||
|
||
<h2>Quality score by Sample and phylum<h/2> | ||
{div[bySample]} | ||
|
||
{div[QualityScore]} | ||
|
||
{div[bySample]} | ||
|
||
{div[byPhylum]} | ||
|
||
</div> | ||
</body> | ||
|
||
</div> | ||
</body> | ||
</html> | ||
</html> |
Oops, something went wrong.