-
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.
Merge pull request #8 from ylab-hi/deploy
Deploy
- Loading branch information
Showing
55 changed files
with
6,527 additions
and
2,794 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 |
---|---|---|
|
@@ -2,12 +2,23 @@ | |
name = "deepchopper" | ||
version = "0.1.0" | ||
edition = "2021" | ||
authors = ["Yangyang Li <[email protected]>"] | ||
description = "A Genomic Language Model for Chimera Artifact Detection in Nanopore Direct RNA Sequencing" | ||
documentation = "https://docs.rs/bitflags" | ||
homepage = "https://serde.rs" | ||
repository = "https://github.com/rust-lang/cargo" | ||
license = "Apache-2.0" | ||
readme = "README.md" | ||
|
||
[lib] | ||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
name = "deepchopper" | ||
crate-type = ["cdylib", "rlib"] | ||
|
||
[[bin]] | ||
path = "src/bin/predict.rs" | ||
name = "deepchopper-chop" | ||
|
||
[profile.dev] | ||
debug = 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
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,7 @@ | ||
"""DeepChopper package.""" | ||
|
||
from . import data, eval, models, train, utils | ||
from . import data, eval, models, train, ui, utils | ||
from .deepchopper import * # noqa: F403 | ||
from .models import DeepChopper | ||
|
||
__all__ = ["models", "utils", "data", "train", "eval"] | ||
__all__ = ["models", "utils", "data", "train", "eval", "DeepChopper", "ui"] |
Oops, something went wrong.