neuromorpho_literature_search | R Documentation |
Search for literature in the neuromorpho.org repository. The returned
data frame can be used to get article IDs and neuron names, that can be fed to neuromorpho_get_article
,
in order to get information on studies that have submitted reconstructions to neuromorpho.org.
Searches are made by looking at the meta data for items of literature in the repository,
i.e. querying for certain field entries for certain literature fields.
neuromorpho_literature_search(
search_terms = c("species:Drosophila melanogaster"),
neuromorpho_url = "http://neuromorpho.org",
...
)
search_terms |
a vector of search terms, with each term formatted as |
neuromorpho_url |
the base URL for querying the neuromorpho database, defaults to http://neuromorpho.org |
... |
methods passed to |
Beware, that these terms are
different from the equivalent fields and field entries for neurons, e.g. the cell type literature field is cellType
rather than cell_type
, as it is for neurons. Articles can also be searched in a web browser at http://neuromorpho.org/LS.jsp.
Other literature functions:
neuromorpho_get_article()
,
neuromorpho_literature_field_counts()
,
neuromorpho_literature_field_entries()
,
neuromorpho_literature_fields()
## Not run:
# Let's search for some literature that has contributed reconstructions to neuromorpho.org
## let's have a look at articles that have worked on Drosophila melanogaster
lit.search = neuromorpho_literature_search(field="species:Drosophila melanogaster")
## We have found this many papers
print(nrow(lit.search))
## Note this is a little different from what we get when we pull this information for neurons
neuron.fields = neuromorpho_field_entries(field="species")
print(neuron.fields)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.