Skip to content

Commit

Permalink
Update docs and fix inits
Browse files Browse the repository at this point in the history
  • Loading branch information
jrm5100 committed Oct 9, 2020
1 parent 5b8c7d7 commit d1a3b49
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 25 deletions.
29 changes: 17 additions & 12 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,23 @@ Documentation for pandas-genomics

Pandas ExtensionArray for working with genomics data

TODO:

- [x] Create the GenotypeArray ExtensionArray
- [x] Pass all necessary ExtensionArray tests
- [ ] IO Functions
- [x] Load data from Plink files
- [ ] Export to Plink files
- [ ] Load data from VCF files
- [ ] Export to VCF files
- [ ] Add Useful Methods
- [ ] Additive encoding
- [ ] Get variant frequencies
Done
----

- Create the GenotypeArray ExtensionArray
- Pass all necessary ExtensionArray tests
- Load data from Plink files

ToDo
----

- IO
- Export to Plink files
- Load data from VCF files
- Export to VCF files
- Add Useful Methods
- Additive encoding
- Get variant frequencies

.. toctree::
:maxdepth: 2
Expand Down
12 changes: 0 additions & 12 deletions pandas_genomics/__init__.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,2 @@
from .scalars import Genotype, Variant
from .arrays import GenotypeDtype, GenotypeArray
import io

__all__ = [
'Genotype',
'Variant',
'GenotypeDtype',
'GenotypeArray',
'io'
]

# Simple version tracking for now until Poetry has a solution
__version__ = "v0.2.0"
3 changes: 2 additions & 1 deletion tests/genotype_array/test_genotypearray.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
from pandas.tests.extension import base
import pytest

from pandas_genomics import GenotypeDtype, GenotypeArray, Variant
from pandas_genomics.arrays import GenotypeDtype, GenotypeArray
from pandas_genomics.scalars import Variant

random.seed(1855)

Expand Down

0 comments on commit d1a3b49

Please sign in to comment.