-
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.
update to v0.3.8 to fix adjustText usage
- Loading branch information
Showing
9 changed files
with
144 additions
and
140 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 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
Large diffs are not rendered by default.
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "trackplot" | ||
version = "0.3.7" | ||
version = "0.3.8" | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ | |
faulthandler.enable() | ||
|
||
|
||
__version__ = "0.3.7" | ||
__version__ = "0.3.8" | ||
__author__ = "ygidtu & Ran Zhou" | ||
__email__ = "[email protected]" | ||
|
||
|
@@ -1210,6 +1210,11 @@ def plot(self, | |
if p.type == "density": | ||
if isinstance(p.obj[0], Depth): | ||
for key, readDepth in p.obj[0].data.items(): | ||
temp_params = self.params.get(p, {}) | ||
|
||
if "y_label" not in temp_params: | ||
temp_params["y_label"] = key | ||
|
||
plot_density( | ||
ax=ax_var, | ||
data=readDepth, | ||
|
@@ -1220,8 +1225,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, {}) | ||
**temp_params | ||
) | ||
curr_idx += 1 | ||
ax_var = plt.subplot(gs[curr_idx, 0]) | ||
|
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