extract
genie.extract
¶
This module contains all the functions that extract data from Synapse
Attributes¶
logger = logging.getLogger(__name__)
module-attribute
¶
stdout_handler = logging.StreamHandler(stream=sys.stdout)
module-attribute
¶
Functions¶
get_center_input_files(syn, synid, center, process='main', downloadFile=True)
¶
Walks through each center's input directory to get a list of tuples of center files
PARAMETER | DESCRIPTION |
---|---|
syn
|
Synapse connection
TYPE:
|
synid
|
Synapse Id of a folder
TYPE:
|
center
|
GENIE center name
TYPE:
|
process
|
Process type include "main", "mutation". Defaults to "main".
TYPE:
|
downloadFile
|
Downloads the file. Defaults to True.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
list
|
List of Synapse entities
TYPE:
|
Source code in genie/extract.py
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 |
|
_map_name_to_filetype(name)
¶
Maps file name to filetype
PARAMETER | DESCRIPTION |
---|---|
name
|
File name
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
str
|
filetype
TYPE:
|
Source code in genie/extract.py
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 |
|
get_file_mapping(syn, synid)
¶
Get mapping between Synapse entity name and Synapse ids of all entities in a folder
PARAMETER | DESCRIPTION |
---|---|
syn
|
Synapse connection
TYPE:
|
synid
|
Synapse Id of folder
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
dict
|
mapping between Synapse Entity name and Id
TYPE:
|
Source code in genie/extract.py
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 |
|
get_public_to_consortium_synid_mapping(syn, release_synid)
¶
Gets the mapping between potential public release names and the consortium release folder
PARAMETER | DESCRIPTION |
---|---|
syn
|
Synapse connection
TYPE:
|
release_synid
|
Release folder fileview
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
dict
|
Mapping between potential public release and consortium release synapse id
TYPE:
|
Source code in genie/extract.py
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 |
|
get_syntabledf(syn, query_string)
¶
Get dataframe from Synapse Table query
PARAMETER | DESCRIPTION |
---|---|
syn
|
Synapse connection
TYPE:
|
query_string
|
Table query
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
DataFrame
|
pd.DataFrame: Query results in a dataframe |
Source code in genie/extract.py
176 177 178 179 180 181 182 183 184 185 186 187 188 189 |
|
_get_synid_database_mappingdf(syn, project_id)
¶
Get database to synapse id mapping dataframe
PARAMETER | DESCRIPTION |
---|---|
syn
|
Synapse object
|
project_id
|
Synapse Project ID with a 'dbMapping' annotation.
|
RETURNS | DESCRIPTION |
---|---|
database to synapse id mapping dataframe |
Source code in genie/extract.py
192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 |
|
getDatabaseSynId(syn, tableName, project_id=None, databaseToSynIdMappingDf=None)
¶
Get database synapse id from database to synapse id mapping table
PARAMETER | DESCRIPTION |
---|---|
syn
|
Synapse object
|
project_id
|
Synapse Project ID with a database mapping table.
DEFAULT:
|
tableName
|
Name of synapse table
|
databaseToSynIdMappingDf
|
Avoid calling rest call to download table if the mapping table is already downloaded
DEFAULT:
|
RETURNS | DESCRIPTION |
---|---|
str
|
Synapse id of wanted database |
Source code in genie/extract.py
211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 |
|
_get_database_mapping_config(syn, synid)
¶
Gets Synapse database to Table mapping in dict
PARAMETER | DESCRIPTION |
---|---|
syn
|
Synapse connection
TYPE:
|
synid
|
Synapse id of database mapping table
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
dict
|
{'databasename': 'synid'}
TYPE:
|
Source code in genie/extract.py
236 237 238 239 240 241 242 243 244 245 246 247 248 249 |
|
get_genie_config(syn, project_id)
¶
Get configurations needed for the GENIE codebase
PARAMETER | DESCRIPTION |
---|---|
syn
|
Synapse connection
TYPE:
|
project_id
|
Synapse project id
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
dict
|
GENIE table type/name to Synapse Id
TYPE:
|
Source code in genie/extract.py
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 |
|
_get_oncotreelink(syn, genie_config, oncotree_link=None)
¶
Gets oncotree link unless a link is specified by the user
PARAMETER | DESCRIPTION |
---|---|
syn
|
Synapse connection
TYPE:
|
genie_config
|
database name to synid mapping
TYPE:
|
oncotree_link
|
link to oncotree. Default is None
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
str
|
oncotree link
TYPE:
|
Source code in genie/extract.py
286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 |
|