-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[ENH] Load data: Add data loader for H5AD format #356
Conversation
Hm.. anndata is not available trough conda-forge channel (it is on bioconda channel). This means we will brake recipe build for the next release. Support for multiple channels in recipes is not supported: conda/conda-build#3656 Maybe we should just throw a warning if anndata can not be imported. |
Is it possible to specify additional conda channels when building the package? It seems to me that this is constantly popping up. Isn't there some way to manually install the package through pip using |
conda-forge/staged-recipes#9398 I have added you to be a maintainer, please confirm in PR. |
This looks good to me! Also, the recipe tests pass and will hopefully be merged soon. @VesnaT Can you maybe quickly look at it and merge if OK? |
Actually, since we’re on the topic of licenses could we make sure that
anndata is properly licensed so we can include it into our orange without
making things complicated? Does anyone know who we could talk to about
this?
…On Tue, 3 Sep 2019 at 14:04, Jaka ***@***.***> wrote:
This looks good to me! Also, the recipe tests pass and will hopefully be
merged soon.
@VesnaT <https://github.com/VesnaT> Can you maybe quickly look at it and
merge if OK?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#356?email_source=notifications&email_token=ABL5ZJ276V4L6AJ2EM7CCJDQHZHEFA5CNFSM4IS76MSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD5X62ZI#issuecomment-527428965>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ABL5ZJY53W5BQZD65A72OTDQHZHEFANCNFSM4IS76MSA>
.
|
What is wrong with the current license? |
Never mind, I checked the license and it's got the BSD-3 clause, which should be fine. A year or so ago there was a discussion in the lab about licensing and we had to be careful about which packages were added to dependencies because of this. I don't really know if that lead anywhere, but it's better to check this before adding a potentially non-commercially licensed software package to dependencies. But like I said, this one has BSD-3, which should be fine. |
Issue
The load data widget does not support the
h5ad
format. This format is by far the nicest and fastest format I've used for sparse gene expression matrices.scanpy
andseurat
both support this format.Description of changes
Add an H5AD reader.
Includes