Client(endpoint, token)
Creates a new MedConB client.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
endpoint
|
str
|
URL of the MedConB API. E.g. https://api.medconb.example.com/graphql/ |
required |
token
|
str
|
Authorization token. |
required |
Source code in medconb_client.py
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 |
|
get_codelist(codelist_id, with_description=False)
Retrieves the codelist by ID from the API and parses the data into the python data structures.
It mirrors the logic of the export and current understanding of transient codesets: Transient codesets are the current version and should be used if they exist. (At some point the API might change to reflect that default behaviour better as it might be a bit confusing atm.)
Source code in medconb_client.py
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 |
|
get_codelist_by_name(*, codelist_name, codelist_collection_name=None, phenotype_collection_name=None, phenotype_name=None)
get_codelist_by_name(
*, codelist_name: str, codelist_collection_name: str
)
get_codelist_by_name(
*,
codelist_name: str,
phenotype_collection_name: str,
phenotype_name: str
)
Retrieves a Codelist by its name.
Use the arguments codelist_name
with either:
codelist_collection_name
orphenotype_collection_name
andphenotype_name
Parameters:
Name | Type | Description | Default |
---|---|---|---|
codelist_name
|
str
|
Name of the codelist |
required |
codelist_collection_name
|
str
|
Name of the codelist collection |
None
|
phenotype_collection_name
|
str
|
Name of the phenotype collection |
None
|
phenotype_name
|
str
|
Name of the phenotype |
None
|
Source code in medconb_client.py
302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 |
|
get_workspace()
Retrieves a listing of all collections and their codelists/pheontypes within the workspace.
Returns:
Name | Type | Description |
---|---|---|
Workspace |
Workspace
|
Workspace object containing id and name of all codelists and phenotypes. |
Example
For a detailed example, see Examples.
>>> workspace = client.get_workspace()
>>> print(workspace)
Workspace(
collections=[
Collection(
id="ff755b3a-8f93-43a2-bb8f-2ee435e28938",
name="ATTR CM Library",
description="...",
referenceID="...",
itemType="Codelist",
items=[
CodelistInfo(id="...", name="..."),
CodelistInfo(id="...", name="..."),
...
],
ownerID="...",
locked=False,
visibility="Private",
),
...
],
shared=[
Collection(...),
],
)
Source code in medconb_client.py
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 |
|
search_public_codelists(query)
Searches the public marketplace for codelists.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
query
|
str
|
A query string similar to a google search. |
required |
Returns:
Type | Description |
---|---|
list[CodelistInfo]
|
list[CodelistInfo]: List of codelists that match the search. |
All search is case-insensitive.
The search by default searches name and description for the search terms. By using "name:search-term" you can search a specific field (name in this case). To only consider exact matches of a word, use "name:'blood'". This will find results like "Blood Infusion", but not "bloody nose".
Source code in medconb_client.py
368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 |
|
Codelist(id, name, description, codesets)
dataclass
Codelist is a codelist as defined in MedConB.
Attributes:
Name | Type | Description |
---|---|---|
id |
str
|
ID of the codelist. |
name |
str
|
Name of the codelist. |
description |
str
|
Description of the codelist. |
codesets |
Codesets
|
List of codesets in the codelist. |
to_pandas()
Convert the codelists codesets to a pandas DataFrame.
Returns:
Type | Description |
---|---|
pd.DataFrame: The codesets as a DataFrame. |
Source code in medconb_client.py
101 102 103 104 105 106 107 108 |
|
CodelistInfo
Bases: BaseModel
Basic information on a codelist as defined in MedConB.
Attributes:
Name | Type | Description |
---|---|---|
id |
str
|
ID of the codelist. |
name |
str
|
Name of the codelist. |
Codeset(ontology, codes)
dataclass
Codeset is a codeset as defined in MedConB.
Attributes:
Name | Type | Description |
---|---|---|
ontology |
str
|
Ontology which the codes belong to |
codes |
list[tuple[str, str]]
|
List of codes, each represented as a tuple of code and description |
Codesets
Bases: UserList['Codeset']
Codesets is a list of codesets as defined in MedConB.
It's just a thin wrapper, so we can offer to_pandas
.
to_pandas()
Convert the codesets to a pandas DataFrame.
Returns:
Type | Description |
---|---|
pd.DataFrame: The codesets as a DataFrame. |
Source code in medconb_client.py
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 |
|
Collection
Bases: BaseModel
Collection as defined in MedConB.
Attributes:
Name | Type | Description |
---|---|---|
id |
str
|
ID of the collection. |
name |
str
|
Name of the collection. |
description |
str
|
Description of the collection. |
referenceID |
str
|
ID of the collection this one was copied from. |
itemType |
str
|
Type of the collections items. |
items |
list[CodelistInfo | PhenotypeInfo]
|
Basic information on the items in this collection. |
ownerID |
str
|
ID of the owner of the collection. |
locked |
bool
|
Whether the collection is locked. |
visibility |
str
|
Visibility of the collection. Can be "own", "shared" or "public". |
PhenotypeInfo
Bases: BaseModel
Basic information on a phenotype as defined in MedConB.
Attributes:
Name | Type | Description |
---|---|---|
id |
str
|
ID of the phenotype. |
name |
str
|
Name of the phenotype. |
SearchMatchingType
Bases: Enum
Types of matching to use when searching the public marketplace.
Enum Members:
Enum Name | Description |
---|---|
EXACT |
Search for an exact match. |
SUBSTRING |
Search for a substring match. |
Workspace
Bases: BaseModel
Workspace as defined in MedConB.
Attributes:
Name | Type | Description |
---|---|---|
collections |
list[Collection]
|
List of collections in the workspace owned by the user. |
shared |
list[Collection]
|
List of collections in the workspace shared with the user. |