citation(cite_id=None,
authors=None,
doi=None,
pubmed_id=None,
full_citation=None,
title=None,
status=None,
type=None,
journal_abbrev=None,
journal_full=None,
volume=None,
issue=None,
page_first=None,
page_last=None,
year=None)
| source code
|
Store a citation.
- Parameters:
cite_id (str) - The citation ID string.
authors (list of lists of str) - The list of authors. Each author element is a list of four
elements: the first name, last name, first initial, and middle
initials.
doi (None or str) - The DOI number, e.g. "10.1000/182".
pubmed_id (None or int) - The identification code assigned to the publication by PubMed.
full_citation (str) - A full citation in a format similar to that used in a journal
article by either cutting and pasting from another document or by
typing. Please include author names, title, journal, page
numbers, and year or equivalent information for the type of
publication given.
title (str) - The title of the publication.
status (str) - The publication status. Can be one of in
"preparation", "in press",
"published", "retracted", or
"submitted".
type (str) - The publication type. Can be one of "abstract",
"BMRB only", "book", "book
chapter", "internet", "journal",
"personal communication", or "thesis".
journal_abbrev (str) - A standard journal abbreviation as defined by the Chemical
Abstract Services for the journal where the data are or will be
published. If the data in the deposition are related to a J.
Biomol. NMR paper, the value must be 'J. Biomol. NMR' to alert
the BMRB annotators so that the deposition is properly processed.
If the depositor truly does not know the journal, a value of 'not
known' or 'na' is acceptable.
journal_full (str) - The full journal name.
volume (int) - The volume number.
issue (int) - The issue number.
page_first (int) - The first page number.
page_last (int) - The last page number.
year (int) - The publication year.
|