-
Notifications
You must be signed in to change notification settings - Fork 0
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
19 changed files
with
29 additions
and
206 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build" | |
|
||
[project] | ||
name = "bsxplorer" | ||
version = "1.0.0" | ||
version = "1.0.0a0" | ||
authors = [ | ||
{ name="shitohana", email="[email protected]" }, | ||
] | ||
|
@@ -40,17 +40,17 @@ classifiers = [ | |
# dynamic = ["version", "description"] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/shitohana/BismarkPlot" | ||
Documentation = "https://shitohana.github.io/BismarkPlot/" | ||
"Bug Tracker" = "https://github.com/shitohana/BismarkPlot/issues" | ||
Homepage = "https://github.com/shitohana/BSXplorer" | ||
Documentation = "https://shitohana.github.io/BSXplorer/" | ||
"Bug Tracker" = "https://github.com/shitohana/BSXplorer/issues" | ||
|
||
[tool.hatch.build] | ||
exclude = ["/venv", "/dist", "/test", "/docs"] | ||
|
||
[tool.hatch.build.targets.wheel] | ||
packages = ["src/bismarkplot"] | ||
packages = ["src/bsxplorer"] | ||
|
||
[project.scripts] | ||
bsxplorer-metagene = "bismarkplot.templates.cons_MetageneReport:main" | ||
bsxplorer-category = "bismarkplot.templates.cons_CategoryReport:main" | ||
bsxplorer-chr = "bismarkplot.templates.cons_ChrLevelsReport:main" | ||
bsxplorer-metagene = "bsxplorer.templates.cons_MetageneReport:main" | ||
bsxplorer-category = "bsxplorer.templates.cons_CategoryReport:main" | ||
bsxplorer-chr = "bsxplorer.templates.cons_ChrLevelsReport:main" |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
src/bismarkplot/ArrowReaders.py → src/bsxplorer/ArrowReaders.py
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
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 |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
|
||
import polars as pl | ||
from pathlib import Path | ||
|
||
from .utils import MetageneSchema | ||
|
||
|
||
|
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 |
---|---|---|
|
@@ -3,7 +3,6 @@ | |
import gc | ||
import gzip | ||
import io | ||
import multiprocessing | ||
import os | ||
import shutil | ||
import tempfile | ||
|
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,7 +1,7 @@ | ||
from .MetageneClasses import Metagene, MetageneFiles | ||
from .Plots import LinePlot, LinePlotFiles, HeatMap, HeatMapFiles | ||
from .Plots import LinePlot, LinePlotFiles, HeatMap, HeatMapFiles, PCA | ||
from .Binom import BinomialData, RegionStat | ||
from .GenomeClass import Genome | ||
from .ChrLevels import ChrLevels | ||
|
||
__version__ = '1.0.0' | ||
__version__ = '1.0.0a0' |
File renamed without changes.
Oops, something went wrong.