Skip to content

Commit

Permalink
added missing .data api export
Browse files Browse the repository at this point in the history
  • Loading branch information
davidsebfischer committed Aug 25, 2019
1 parent eca3af5 commit 5ba171a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
3 changes: 2 additions & 1 deletion batchglm/api/data.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
from batchglm.data import design_matrix
from batchglm.data import constraint_matrix_from_dict, constraint_matrix_from_string, string_constraints_from_dict
from batchglm.data import constraint_matrix_from_dict, constraint_matrix_from_string, string_constraints_from_dict, \
constraint_system_from_star
from batchglm.data import view_coef_names, preview_coef_names
5 changes: 1 addition & 4 deletions batchglm/data.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
import dask
import dask.array
import logging
import patsy
import pandas as pd
import numpy as np
import scipy.sparse
from typing import Union, Dict, Tuple, List
from typing import Union, Tuple, List

try:
import anndata
Expand Down

0 comments on commit 5ba171a

Please sign in to comment.