Citation
Citation
¶
Bases: UUIDBaseNode
Definition¶
The Citation sub-object
essentially houses the Reference nodes.
The citation sub-object provides a link to papers, books, or other scholarly work
and allows users to specify in what way the work relates to that data.
Attributes¶
| attribute | type | example | description | required | vocab |
|---|---|---|---|---|---|
| type | str | derived_from | key for identifier | True | True |
| reference | Reference | reference to a book, paper, or scholarly work | True |
JSON Representation¶
"citation": {
"node": ["Citation"],
"type": "reference",
"reference": {
"node": ["Reference"],
"type": "journal_article",
"title": "Multi-architecture Monte-Carlo (MC) simulation of soft coarse-grained polymeric materials: SOft coarse grained Monte-Carlo Acceleration (SOMA)",
"author": ["Ludwig Schneider", "Marcus Müller"],
"journal": "Computer Physics Communications",
"publisher": "Elsevier",
"year": 2019,
"pages": [463, 476],
"doi": "10.1016/j.cpc.2018.08.011",
"issn": "0010-4655",
"website": "https://www.sciencedirect.com/science/article/pii/S0010465518303072",
},
}
Valid Parent Nodes¶
- Collection node
- Computation node
- Computation Process Node
- Property sub-object
- Algorithm sub-object
- Equipment sub-object
Valid Sub-objects¶
None
Source code in cript/nodes/subobjects/citation.py
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 | |
reference: Union[Reference, None]
property
writable
¶
citation reference node
Examples:
>>> import cript
>>> title = (
... "Multi-architecture Monte-Carlo (MC) simulation of soft coarse-grained polymeric materials: "
... "Soft coarse grained Monte-Carlo Acceleration (SOMA)"
... )
>>> my_reference = cript.Reference(
... "journal_article",
... title=title,
... author=["Ludwig Schneider", "Marcus Müller"],
... journal="Computer Physics Communications",
... publisher="Elsevier",
... year=2019,
... pages=[463, 476],
... doi="10.1016/j.cpc.2018.08.011",
... issn="0010-4655",
... website="https://www.sciencedirect.com/science/article/pii/S0010465518303072",
... )
>>> my_citation = cript.Citation(type="reference", reference=my_reference)
>>> my_new_reference = cript.Reference(
... type="journal_article",
... title="'Living' Polymers",
... author=["Dylan J. Walsh", "Bradley D. Olsen"],
... journal="Nature",
... publisher="Springer",
... year=2019,
... volume=3,
... issue=5,
... pages=[123, 456, 789],
... doi="10.1038/1781168a0",
... issn="1476-4687",
... arxiv_id="1501",
... pmid=12345678,
... website="https://criptapp.org",
... )
>>> my_citation.reference = my_new_reference
Returns:
| Type | Description |
|---|---|
Reference
|
Reference node |
type: str
property
writable
¶
Citation type sub-object
Citation type must come from CRIPT Controlled Vocabulary
Examples:
>>> import cript
>>> title = (
... "Multi-architecture Monte-Carlo (MC) simulation of soft coarse-grained polymeric materials: "
... "Soft coarse grained Monte-Carlo Acceleration (SOMA)"
... )
>>> my_reference = cript.Reference(
... "journal_article",
... title=title,
... author=["Ludwig Schneider", "Marcus Müller"],
... journal="Computer Physics Communications",
... publisher="Elsevier",
... year=2019,
... pages=[463, 476],
... doi="10.1016/j.cpc.2018.08.011",
... issn="0010-4655",
... website="https://www.sciencedirect.com/science/article/pii/S0010465518303072",
... )
>>> my_citation = cript.Citation(type="reference", reference=my_reference)
>>> my_citation.type = "extracted_by_algorithm"
Returns:
| Type | Description |
|---|---|
str
|
Citation type |
__init__(type, reference, **kwargs)
¶
create a Citation sub-object
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
type |
citation type
|
citation type must come from CRIPT Controlled Vocabulary |
required |
reference |
Reference
|
Reference node |
required |
Examples:
>>> import cript
>>> title = (
... "Multi-architecture Monte-Carlo (MC) simulation of soft coarse-grained polymeric materials: "
... "Soft coarse grained Monte-Carlo Acceleration (SOMA)"
... )
>>> my_reference = cript.Reference(
... "journal_article",
... title=title,
... author=["Ludwig Schneider", "Marcus Müller"],
... journal="Computer Physics Communications",
... publisher="Elsevier",
... year=2019,
... pages=[463, 476],
... doi="10.1016/j.cpc.2018.08.011",
... issn="0010-4655",
... website="https://www.sciencedirect.com/science/article/pii/S0010465518303072",
... )
>>> my_citation = cript.Citation(type="reference", reference=my_reference)
Returns:
| Type | Description |
|---|---|
None
|
Instantiate citation sub-object |