Charles Tapley Hoyt
Charles Tapley Hoyt
Do you think it would be worth adding something to the BEL language to better represent the types statements that are generally made about miRNA's?
Technically, it's not hard to extend PyBEL, but Dexter proposed the idea of having modules that can be "imported" to the parser. That would require quite a bit of development...
Just ran into this article: http://www.geneontology.org/page/microrna-go-annotation-manual. Might be relevant
In my big projects, I've put `exc.py` with a base "exception" and base "warning". Then I put another `exc.py` in each submodule with more specific stuff.
One rationale for doing this is to have lots of smaller python files that don't have large public namespaces, then aggregate all of the useful stuff in each module in...
After some number of hours, I got the following error. I'm pretty sure it's not due to any changes I've made, but maybe you have some ideas. ```python-traceback $ python...
@jamesaoverton thanks for the link, I searched the issues to see if anyone had mentioned brew/homebrew before and didn't see this
Not really. I tried doing it once and got a bit discouraged.
You could use the `keyword` module in python to either check a given string if it's a keyword or get the whole list https://docs.python.org/3/library/keyword.html
Indeed that PR looks like it will get the job done.