deCODE Aptamer Metadata
gentropy.datasource.decode.aptamer_metadata.AptamerMetadata
dataclass
¶
Bases: Dataset
Mapping from SomaScan aptamer identifiers to protein target metadata.
Each row describes a single SomaScan aptamer and its one or more protein targets.
Multi-target aptamers (i.e. those measuring a protein complex) are flagged with
isProteinComplex = True and their targetMetadata array will contain more
than one element.
The dataset is created from the aptamer study table supplied by deCODE and is used
in deCODEStudyIndex.from_manifest
to join aptamer-level annotations onto the per-study manifest.
Source code in src/gentropy/datasource/decode/aptamer_metadata.py
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 | |
from_source(session: Session, path: str) -> AptamerMetadata
classmethod
¶
Load and parse the deCODE aptamer metadata file.
The file at path is expected to be a TSV with the SomaScan study table
layout (columns: seqid, target_name, target_full_name, gene_name,
uniprot). Each seqid value is normalised by stripping the SeqId. prefix
and converting the underscore-separated aptamer identifier to a hyphen-separated one.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
session
|
Session
|
Gentropy session object used to load the source data. |
required |
path
|
str
|
Path (local or remote) to the aptamer metadata TSV file. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
AptamerMetadata |
AptamerMetadata
|
Validated |
Source code in src/gentropy/datasource/decode/aptamer_metadata.py
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 | |
get_schema() -> t.StructType
classmethod
¶
Return the enforced Spark schema for AptamerMetadata.
Returns:
| Type | Description |
|---|---|
StructType
|
t.StructType: Expected schema containing |
Source code in src/gentropy/datasource/decode/aptamer_metadata.py
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 | |