Collection
Collection
¶
Bases: PrimaryBaseNode
Definition¶
A Collection node is nested inside a Project node.
A Collection node can be thought as a folder/bucket that can hold experiment or Inventories node.
attribute | type | example | description |
---|---|---|---|
experiment | list[Experiment] | experiment that relate to the collection | |
inventory | list[Inventory] | inventory owned by the collection | |
doi | str | 10.1038/1781168a0 |
DOI: digital object identifier for a published collection; CRIPT generated DOI |
citation | list[Citation] | reference to a book, paper, or scholarly work | |
notes | str | "my awesome notes" | miscellaneous information, or custom data structure |
JSON Representation¶
{
"name": "my collection JSON",
"node":["Collection"],
"uid":"_:fccd3549-07cb-4e23-ba79-323597ec9bfd",
"uuid":"fccd3549-07cb-4e23-ba79-323597ec9bfd"
"experiment":[
{
"name":"my experiment name",
"node":["Experiment"],
"uid":"_:8256b75b-1f4e-4f69-9fe6-3bcb2298e470",
"uuid":"8256b75b-1f4e-4f69-9fe6-3bcb2298e470"
}
],
"inventory":[],
"citation":[],
}
Source code in src/cript/nodes/primary_nodes/collection.py
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 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 |
|
citation: List[Any]
property
writable
¶
List of Citations within this Collection
Examples:
>>> import cript
>>> my_collection = cript.Collection(name="my collection name")
>>> my_reference = cript.Reference(
... type="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="derived_from", reference=my_reference)
>>> my_collection.citation = [my_citation]
Returns:
Name | Type | Description |
---|---|---|
citation |
List[Citation]:
|
list of Citations within this Collection |
doi: str
property
writable
¶
experiment: List[Any]
property
writable
¶
List of all experiment within this Collection
Examples:
>>> import cript
>>> my_collection = cript.Collection(name="my collection name")
>>> my_experiment = cript.Experiment(name="my experiment name")
>>> my_collection.experiment = [my_experiment]
Returns:
Type | Description |
---|---|
List[Experiment]
|
list of all experiment within this Collection |
inventory: List[Any]
property
writable
¶
List of inventory that belongs to this collection
Examples:
>>> import cript
>>> my_collection = cript.Collection(name="my collection name")
>>> material_1 = cript.Material(
... name="material 1",
... bigsmiles = "material 1 bigsmiles",
... )
>>> material_2 = cript.Material(
... name="material 2",
... bigsmiles = "material 2 bigsmiles",
... )
>>> my_inventory = cript.Inventory(
... name="my inventory name", material=[material_1, material_2]
... )
>>> my_collection.inventory = [my_inventory]
Returns:
Name | Type | Description |
---|---|---|
inventory |
List[Inventory]
|
list of inventories in this collection |
JsonAttributes
dataclass
¶
Bases: JsonAttributes
all Collection attributes
Source code in src/cript/nodes/primary_nodes/collection.py
__init__(name, experiment=None, inventory=None, doi='', citation=None, notes='', **kwargs)
¶
create a Collection with a name add list of experiment, inventory, citation, doi, and notes if available.
Examples:
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name |
str
|
name of the Collection you want to make |
required |
experiment |
Optional[List[Union[Any, UIDProxy]]]
|
list of experiment within the Collection |
None
|
inventory |
Optional[List[Union[Any, UIDProxy]]]
|
list of inventories within this collection |
None
|
doi |
str
|
cript doi |
''
|
citation |
Optional[List[Union[Any, UIDProxy]]]
|
List of citations for this collection |
None
|
Returns:
Type | Description |
---|---|
None
|
Instantiates a Collection node |