status
ensembl.io.genomio.assembly.status
¶
Obtain and record the assembly status for a set of INSDC accession(s) using NCBI's datasets CLI tool.
DATASETS_SINGULARITY = {'datasets_version_url': 'docker://ensemblorg/datasets-cli:latest'}
module-attribute
¶
ReportStructure
dataclass
¶
Stores key report meta information.
Source code in src/python/ensembl/io/genomio/assembly/status.py
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 |
|
accession = ''
class-attribute
instance-attribute
¶
assembly_name = ''
class-attribute
instance-attribute
¶
assembly_notes = 'NA'
class-attribute
instance-attribute
¶
assembly_status = 'NA'
class-attribute
instance-attribute
¶
assembly_type = ''
class-attribute
instance-attribute
¶
last_updated = ''
class-attribute
instance-attribute
¶
paired_assembly = 'NA'
class-attribute
instance-attribute
¶
species_name = ''
class-attribute
instance-attribute
¶
strain = 'NA'
class-attribute
instance-attribute
¶
taxon_id = 0
class-attribute
instance-attribute
¶
header()
¶
Returns the dictionary keys matching each of the properties of the report.
Source code in src/python/ensembl/io/genomio/assembly/status.py
85 86 87 |
|
to_dict()
¶
Returns a dictionary representation of this object.
Source code in src/python/ensembl/io/genomio/assembly/status.py
70 71 72 73 74 75 76 77 78 79 80 81 82 83 |
|
values()
¶
Returns the values of each of the properties of the report.
Source code in src/python/ensembl/io/genomio/assembly/status.py
89 90 91 |
|
UnsupportedFormatError
¶
Bases: Exception
When a string does not have the expected format.
Source code in src/python/ensembl/io/genomio/assembly/status.py
51 52 |
|
extract_assembly_metadata(assembly_reports)
¶
Parse assembly reports and extract specific key information on status and related fields.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
assembly_reports
|
dict[str, dict]
|
Key value pair of source name <> assembly report. |
required |
Returns:
Type | Description |
---|---|
dict[str, ReportStructure]
|
Parsed assembly report meta (source, meta). |
Source code in src/python/ensembl/io/genomio/assembly/status.py
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 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 |
|
fetch_accessions_from_core_dbs(src_file, server_url)
¶
Obtain the associated INSDC accession given a set of core database names and a database server URL.
The accession information is obtained from the meta
table's meta key assembly.accession
.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
src_file
|
StrPath
|
File path with list of core database names. |
required |
server_url
|
URL
|
Database server URL. |
required |
Returns:
Type | Description |
---|---|
dict[str, str]
|
Dict of core database names (key) and their corresponding INSDC assembly accession (value). |
Source code in src/python/ensembl/io/genomio/assembly/status.py
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 |
|
fetch_datasets_reports(sif_image, assembly_accessions, download_directory, batch_size)
¶
Obtain assembly reports in JSON format for each assembly accession via datasets
CLI.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
sif_image
|
Client
|
Instance of |
required |
assembly_accessions
|
dict[str, str]
|
Dictionary of accession source <> assembly accessions pairs. |
required |
download_directory
|
StrPath
|
Directory path to store assembly report JSON files. |
required |
batch_size
|
int
|
Number of assembly accessions to batch submit to |
required |
Returns:
Type | Description |
---|---|
dict[str, dict]
|
Dictionary of accession source and its associated assembly report. |
Raises:
Type | Description |
---|---|
ValueError
|
If result returned by |
RuntimeError
|
If there was an error raised by |
Source code in src/python/ensembl/io/genomio/assembly/status.py
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 |
|
generate_report_tsv(parsed_asm_reports, query_type, output_directory=Path(), outfile_name='AssemblyStatusReport')
¶
Generate and write the assembly report to a TSV file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
parsed_asm_reports
|
dict[str, ReportStructure]
|
Parsed assembly report meta. |
required |
query_type
|
str
|
Type of query (either core databases or accessions). |
required |
output_directory
|
StrPath
|
Directory to store report TSV file. |
Path()
|
outfile_name
|
str
|
Name to give to the output TSV file. |
'AssemblyStatusReport'
|
Source code in src/python/ensembl/io/genomio/assembly/status.py
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 |
|
get_assembly_accessions(src_file)
¶
Returns the list of assembly accessions found in the provided file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
src_file
|
StrPath
|
Path to file with one line per INSDC assembly accession. |
required |
Raises:
Type | Description |
---|---|
UnsupportedFormatError
|
If an accession does not match the INSDC assembly accession format. |
Source code in src/python/ensembl/io/genomio/assembly/status.py
138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 |
|
main()
¶
Module's entry-point.
Source code in src/python/ensembl/io/genomio/assembly/status.py
347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 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 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 |
|
singularity_image_setter(sif_cache_dir, datasets_version)
¶
Parse ENV and User specified variables related to datasets
singularity SIF
container and define version and location of container.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
sif_cache_dir
|
Path | None
|
Path to locate existing, or download new SIF container image. |
required |
datasets_version
|
str | None
|
URL of singularity container (custom |
required |
Returns:
Type | Description |
---|---|
Client
|
|
Source code in src/python/ensembl/io/genomio/assembly/status.py
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 |
|