R/literature.R
neuromorpho_literature_field_entries.Rd
Returns a list of values present in the repository for the neuron field requested. These values can be used in the for custom literature search queries.
neuromorpho_literature_field_entries(
field = "species",
neuromorpho_url = "http://neuromorpho.org",
...
)
a valid literature field, as returned by neuromorpho_literature_fields
the base URL for querying the neuromorpho database, defaults to http://neuromorpho.org
methods passed to neuromorpho_async_req
, or in some cases, neuromorphr:::neuromorpho_fetch
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_fields()
,
neuromorpho_literature_search()
if (FALSE) {
# Let's see what the possible entries are for literature fields on neuromorpho.org
## let's have a look at what species are in the literature
lit.fields = neuromorpho_literature_field_entries(field="species")
print(lit.fields)
## 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)
}