-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch to pybind11 and a complete rewrite of the package (#33)
* Complete overhaul of the codebase using pybind11 * Streamlined readers for R data types * Updated API for all classes and methods * Updated documentation and tests.
- Loading branch information
Showing
60 changed files
with
1,772 additions
and
1,364 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 |
---|---|---|
|
@@ -52,3 +52,6 @@ MANIFEST | |
.venv*/ | ||
.conda*/ | ||
.python-version | ||
|
||
extern/rds2cpp* | ||
src/rds2py/lib/parser.cpp |
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,3 +1,3 @@ | ||
# Contributors | ||
|
||
* jkanche [[email protected]](mailto:[email protected]) | ||
* Jayaram Kancherla [[email protected]](mailto:[email protected]) |
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
|
||
[metadata] | ||
name = rds2py | ||
description = Parse and read RDS files as Python representations | ||
description = Parse and construct Python representations for datasets stored in RDS files | ||
author = jkanche | ||
author_email = [email protected] | ||
license = MIT | ||
|
@@ -50,11 +50,13 @@ python_requires = >=3.8 | |
install_requires = | ||
importlib-metadata; python_version<"3.8" | ||
numpy | ||
pandas | ||
scipy | ||
biocutils>=0.1.5 | ||
singlecellexperiment>=0.4.1 | ||
summarizedexperiment>=0.4.1 | ||
genomicranges>=0.4.9 | ||
biocframe | ||
multiassayexperiment | ||
|
||
[options.packages.find] | ||
where = src | ||
|
@@ -65,17 +67,14 @@ exclude = | |
# Add here additional requirements for extra features, to install with: | ||
# `pip install rds2py[PDF]` like: | ||
# PDF = ReportLab; RXP | ||
optional = | ||
pandas | ||
|
||
# Add here test requirements (semicolon/line-separated) | ||
testing = | ||
setuptools | ||
pytest | ||
pytest-cov | ||
numpy | ||
pandas | ||
scipy | ||
singlecellexperiment | ||
summarizedexperiment | ||
|
||
[options.entry_points] | ||
# Add here console scripts like: | ||
|
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
Oops, something went wrong.