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",
  ...
)

Arguments

field

a valid literature field, as returned by neuromorpho_literature_fields

neuromorpho_url

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

Details

Articles can also be searched in a web browser at http://neuromorpho.org/LS.jsp.

Examples

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)
}