-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
32 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "trackplot" | ||
version = "0.3.2" | ||
version = "0.3.3" | ||
description = "The trackplot is a tool for visualizing various next-generation sequencing (NGS) data, including DNA-seq, RNA-seq, single-cell RNA-seq and full-length sequencing datasets. https://sashimi.readthedocs.io/" | ||
authors = ["ygidtu <[email protected]>"] | ||
license = "BSD-3" | ||
|
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 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 |
---|---|---|
|
@@ -30,7 +30,7 @@ | |
faulthandler.enable() | ||
|
||
|
||
__version__ = "0.3.2" | ||
__version__ = "0.3.3" | ||
__author__ = "ygidtu & Ran Zhou" | ||
__email__ = "[email protected]" | ||
|
||
|
@@ -1215,7 +1215,7 @@ def plot(self, | |
logger.info(f"plotting {p.type} at idx: {curr_idx} with height_ratio: {height_ratio[curr_idx]}") | ||
if p.type == "density": | ||
if isinstance(p.obj[0], Depth): | ||
for _, readDepth in p.obj[0].data.items(): | ||
for key, readDepth in p.obj[0].data.items(): | ||
plot_density( | ||
ax=ax_var, | ||
data=readDepth, | ||
|
@@ -1226,6 +1226,7 @@ def plot(self, | |
distance_between_label_axis=distance_between_label_axis, | ||
raster=raster, | ||
fill_step=fill_step, | ||
y_label=key, | ||
**self.params.get(p, {}) | ||
) | ||
curr_idx += 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