Cna
genie_registry.cna
¶
Attributes¶
logger = logging.getLogger(__name__)
module-attribute
¶
Classes¶
cna
¶
Bases: FileTypeFormat
Source code in genie_registry/cna.py
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 |
|
Functions¶
validateSymbol(gene, bedDf, returnMappedDf=True)
¶
Validates the gene symbol against the gene symbol in the bed database. Note that gene symbols in the bed database have gone through processing and have been remapped to allowed actual genes if needed.
Two conditions must be met for the gene to be VALID
-
The gene exists in the bed database table's Hugo_Symbol column
-
The gene exists in the bed database table's ID column. Under this condition, the gene in the cna file will be REMAPPED temporarily to the bed database table's Hugo_Symbol value for the purpose of validation. The ID column is the original Hugo_Symbol column of the bed files before the Hugo_Symbol column gets mapped to valid possible gene values in the Actual Gene Positions (GRCh37) database table. See the bed fileformat module's remap_symbols function and how it gets used in processing for more info on this.
The validation throws a WARNING if the gene doesn't satisfy either of the above two conditions
PARAMETER | DESCRIPTION |
---|---|
gene
|
Gene name
TYPE:
|
bedDf
|
The bed database table as a pandas dataframe
TYPE:
|
returnMappedDf
|
Return a mapped gene. Defaults to True
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Union[str, float, bool]
|
Union[str, float, bool]: |
Union[str, float, bool]
|
Returns gene symbol (str if valid, a float("nan") if invalid) if returnMappedDf is True |
Union[str, float, bool]
|
Returns boolean for whether a gene is valid if returnMappedDf is False |
Source code in genie_registry/cna.py
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 |
|
makeCNARow(row, symbols)
¶
Make CNA Row (Deprecated function)
CNA values are no longer stored in the database
PARAMETER | DESCRIPTION |
---|---|
row
|
one row in the CNA file
|
symbols
|
list of Gene symbols
|
Source code in genie_registry/cna.py
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 |
|
mergeCNAvalues(x)
¶
Merge CNA values, make sure if there are two rows that are the same gene, the values are merged
Source code in genie_registry/cna.py
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 |
|
checkIfOneZero(x)
¶
Source code in genie_registry/cna.py
108 109 |
|