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
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
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
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
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
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518 | def seq(
ens_ids: Union[str, List[str]],
translate: bool = False,
isoforms: bool = False,
parallel: bool = True,
save: bool = False,
transcribe: Optional[bool] = None,
seqtype: Optional[str] = None,
verbose: bool = True,
) -> List[str]:
"""
Fetch nucleotide or amino acid sequence (FASTA) of a gene (and all its isoforms) or transcript by Ensembl, WormBase, or FlyBase ID.
Args:
ens_ids (Union[str, List[str]]): One or more Ensembl IDs (passed as string or list of strings).
Also supports WormBase and FlyBase IDs.
translate (bool, optional): Defines whether nucleotide or amino acid sequences are returned.
Defaults to False (returns nucleotide sequences).
Nucleotide sequences are fetched from the Ensembl REST API server.
Amino acid sequences are fetched from the UniProt REST API server.
isoforms (bool, optional): If True, returns the sequences of all known transcripts. Defaults to False.
(Only for gene IDs.)
parallel (bool, optional): If True, fetches sequences in parallel. Defaults to True.
save (bool, optional): If True, saves output FASTA to current directory. Defaults to False.
transcribe (bool, optional): Deprecated. Use 'translate' instead.
seqtype (str, optional): Deprecated. Use 'translate' instead.
verbose (bool, optional): If True, prints progress information. Defaults to True.
Returns:
List[str]: A list containing the requested sequences, or a FASTA file if 'save' is True.
Raises:
ValueError: If an invalid Ensembl ID is provided.
"""
# Handle deprecated arguments
if seqtype:
logging.error(
"'seqtype' argument deprecated! Please use True/False argument 'translate' instead."
)
return
if transcribe:
translate = transcribe
## Clean up arguments
# Clean up Ensembl IDs
# If single Ensembl ID passed as string, convert to list
if type(ens_ids) is str:
ens_ids = [ens_ids]
# Remove Ensembl ID version if passed
ens_ids_clean = []
temp = 0
for ensembl_ID in ens_ids:
# But only for Ensembl ID (and not for flybase/wormbase IDs)
if ensembl_ID.startswith("ENS"):
ens_ids_clean.append(ensembl_ID.split(".")[0])
if "." in ensembl_ID and temp == 0:
if verbose:
logging.info(
"We noticed that you may have passed a version number with your Ensembl ID.\n"
"Please note that gget seq will return information linked to the latest Ensembl ID version."
)
temp = +1
else:
ens_ids_clean.append(ensembl_ID)
# Initiate empty 'fasta'
fasta = []
## Fetch nucleotide sequece
if translate is False:
# Define Ensembl REST API server
server = ENSEMBL_REST_API
# Define type of returned content from REST
content_type = "application/json"
# Initiate dictionary to save results for all IDs in
master_dict = {}
# Query REST APIs from https://rest.ensembl.org/
for ensembl_ID in ens_ids_clean:
# Create dict to save query results
results_dict = {ensembl_ID: {}}
# If isoforms False, just fetch sequences of passed Ensembl ID
if isoforms is False:
# sequence/id/ query: Request sequence by stable identifier
query = "sequence/id/" + ensembl_ID + "?"
# Try if query valid
try:
# Submit query; this will throw RuntimeError if ID not found
df_temp = rest_query(server, query, content_type)
# Delete superfluous entries
keys_to_delete = ["query", "id", "version", "molecule"]
for key in keys_to_delete:
# Pop keys, None -> do not raise an error if key to delete not found
df_temp.pop(key, None)
# Add results to main dict
results_dict[ensembl_ID].update({"seq": df_temp})
if verbose:
logging.info(
f"Requesting nucleotide sequence of {ensembl_ID} from Ensembl."
)
except RuntimeError:
logging.error(
f"ID {ensembl_ID} not found. Please double-check spelling/arguments and try again."
)
# If isoforms true, fetch sequences of isoforms instead
if isoforms is True:
# Get ID type (gene, transcript, ...) using gget info
info_df = info(
ensembl_ID, verbose=False, pdb=False, ncbi=False, uniprot=False
)
# Check if Ensembl ID was found
if isinstance(info_df, type(None)):
logging.warning(
f"ID '{ensembl_ID}' not found. Please double-check spelling/arguments and try again."
)
continue
ens_ID_type = info_df.loc[ensembl_ID]["object_type"]
# If the ID is a gene, get the IDs of all its transcripts
if ens_ID_type == "Gene":
if verbose:
logging.info(
f"Requesting nucleotide sequences of all transcripts of {ensembl_ID} from Ensembl."
)
for transcipt_id in info_df.loc[ensembl_ID]["all_transcripts"]:
# Remove version number for Ensembl IDs (not for flybase/wormbase IDs)
if transcipt_id.startswith("ENS"):
transcipt_id = transcipt_id.split(".")[0]
# Try if query is valid
try:
# Define the REST query
query = "sequence/id/" + transcipt_id + "?"
# Submit query
df_temp = rest_query(server, query, content_type)
# Delete superfluous entries
keys_to_delete = ["query", "version", "molecule"]
for key in keys_to_delete:
# Pop keys, None -> do not raise an error if key to delete not found
df_temp.pop(key, None)
# Add results to main dict
results_dict[ensembl_ID].update(
{f"{transcipt_id}": df_temp}
)
except RuntimeError:
logging.error(
f"ID {transcipt_id} not found. "
"Please double-check spelling/arguments and try again."
)
# If isoform true, but ID is not a gene; ignore the isoform parameter
else:
# Try if query is valid
try:
# Define the REST query
query = "sequence/id/" + ensembl_ID + "?"
# Submit query
df_temp = rest_query(server, query, content_type)
# Delete superfluous entries
keys_to_delete = ["query", "id", "version", "molecule"]
for key in keys_to_delete:
# Pop keys, None -> do not raise an error if key to delete not found
df_temp.pop(key, None)
# Add results to main dict
results_dict[ensembl_ID].update({"seq": df_temp})
logging.info(
f"Requesting nucleotide sequence of {ensembl_ID} from Ensembl."
)
logging.warning("The isoform option only applies to gene IDs.")
except RuntimeError:
logging.error(
f"ID {ensembl_ID} not found. "
"Please double-check spelling/arguments and try again."
)
# Add results to master dict
master_dict.update(results_dict)
# Build FASTA file
for ens_ID in master_dict:
for key in master_dict[ens_ID].keys():
if key == "seq":
fasta.append(">" + ens_ID + " " + master_dict[ens_ID][key]["desc"])
fasta.append(master_dict[ens_ID][key]["seq"])
else:
fasta.append(
">"
+ master_dict[ens_ID][key]["id"]
+ " "
+ master_dict[ens_ID][key]["desc"]
)
fasta.append(master_dict[ens_ID][key]["seq"])
## Fetch amino acid sequences from UniProt
if translate is True:
if isoforms is False:
# List to collect transcript IDs
trans_ids = []
# Get ID type (gene, transcript, ...) using gget info
info_df = info(
ens_ids_clean, verbose=False, pdb=False, ncbi=False, uniprot=False
)
# Check that Ensembl ID was found
missing = set(ens_ids_clean) - set(info_df.index.values)
if len(missing) > 0:
logging.warning(
f"{str(missing)} IDs not found. Please double-check spelling/arguments."
)
ens_ID_type = info_df.loc[ens_ids_clean[0]]["object_type"]
# If the ID is a gene, use the ID of its canonical transcript
if ens_ID_type == "Gene":
# Get ID of canonical transcript
for ensembl_ID in info_df.index.values:
can_trans = info_df.loc[ensembl_ID]["canonical_transcript"]
if ensembl_ID.startswith("ENS"):
# Remove Ensembl ID version from transcript IDs and append to transcript IDs list
temp_trans_id = can_trans.split(".")[0]
trans_ids.append(temp_trans_id)
elif ensembl_ID.startswith("WB"):
# Remove added "." at the end of transcript IDs
temp_trans_id = ".".join(can_trans.split(".")[:-1])
# # For WormBase transcript IDs, also remove the version number for submission to UniProt API
# temp_trans_id = ".".join(temp_trans_id1.split(".")[:-1])
trans_ids.append(temp_trans_id)
else:
# Remove added "." at the end of other transcript IDs
temp_trans_id = ".".join(can_trans.split(".")[:-1])
trans_ids.append(temp_trans_id)
if verbose:
logging.info(
f"Requesting amino acid sequence of the canonical transcript {temp_trans_id} of gene {ensembl_ID} from UniProt."
)
# If the ID is a transcript, append the ID directly
elif ens_ID_type == "Transcript":
# # For WormBase transcript IDs, remove the version number for submission to UniProt API
# if ensembl_ID.startswith("T"):
# trans_ids.append(".".join(ensembl_ID.split(".")[:-1]))
# else:
trans_ids = ens_ids_clean
if verbose:
logging.info(
f"Requesting amino acid sequence of {trans_ids} from UniProt."
)
else:
logging.warning(
"ensembl_IDs not recognized as either a gene or transcript ID. It will not be included in the UniProt query."
)
# Fetch the amino acid sequences of the transcript Ensembl IDs
df_uniprot = get_uniprot_seqs(UNIPROT_REST_API, trans_ids)
# Add info_df.loc[ensembl_ID] to df_uniprot by joining on "canonical_transcript" / "gene_name" respectively
import pdb
pdb.set_trace()
info_df.set_index("canonical_transcript", inplace=True)
df_uniprot.loc[:, "gene_id"] = info_df.loc[
df_uniprot["query"], "gene_name"
].values
if isoforms is True:
# List to collect transcript IDs
trans_ids = []
for ensembl_ID in ens_ids_clean:
# Get ID type (gene, transcript, ...) using gget info
info_df = info(
ensembl_ID, verbose=False, pdb=False, ncbi=False, uniprot=False
)
# Check that Ensembl ID was found
if isinstance(info_df, type(None)):
logging.warning(
f"ID '{ensembl_ID}' not found. Please double-check spelling/arguments."
)
continue
ens_ID_type = info_df.loc[ensembl_ID]["object_type"]
# If the ID is a gene, get the IDs of all isoforms
if ens_ID_type == "Gene":
# Get the IDs of all transcripts from the gget info results
for transcipt_id in info_df.loc[ensembl_ID]["all_transcripts"]:
if ensembl_ID.startswith("ENS"):
# Append transcript ID (without Ensembl version number) to list of transcripts to fetch
trans_ids.append(transcipt_id.split(".")[0])
# elif ensembl_ID.startswith("WB"):
# # For WormBase transcript IDs, remove the version number for submission to UniProt API
# temp_trans_id = ".".join(transcipt_id.split(".")[:-1])
# trans_ids.append(temp_trans_id)
else:
# Note: No need to remove the added "." at the end of unversioned transcripts here, because "all_transcripts" are returned without it
trans_ids.append(transcipt_id)
if verbose:
logging.info(
f"Requesting amino acid sequences of all transcripts of gene {ensembl_ID} from UniProt."
)
elif ens_ID_type == "Transcript":
# # For WormBase transcript IDs, remove the version number for submission to UniProt API
# if ensembl_ID.startswith("T"):
# trans_ids.append(".".join(ensembl_ID.split(".")[:-1]))
# else:
trans_ids.append(ensembl_ID)
if verbose:
logging.info(
f"Requesting amino acid sequence of {ensembl_ID} from UniProt."
)
logging.warning("The isoform option only applies to gene IDs.")
else:
logging.warning(
f"{ensembl_ID} not recognized as either a gene or transcript ID. It will not be included in the UniProt query."
)
# Fetch amino acid sequences of all isoforms from the UniProt REST API
df_uniprot = get_uniprot_seqs(UNIPROT_REST_API, trans_ids)
# Check if any results were found
if len(df_uniprot) < 1:
logging.error("No UniProt amino acid sequences were found for these ID(s).")
else:
# Build FASTA file from UniProt results
for (
uniprot_id,
query_ensembl_id,
gene_name,
organism,
sequence_length,
uniprot_seq,
) in zip(
df_uniprot["uniprot_id"].values,
df_uniprot["query"].values,
df_uniprot["gene_name"].values,
df_uniprot["gene_id"].values,
df_uniprot["organism"].values,
df_uniprot["sequence_length"].values,
df_uniprot["sequence"].values,
):
fasta.append(
">"
+ str(query_ensembl_id)
+ " uniprot_id: "
+ str(uniprot_id)
+ " ensembl_id: "
+ str(query_ensembl_id)
+ " gene_name: "
+ str(gene_name)
+ " organism: "
+ str(organism)
+ " sequence_length: "
+ str(sequence_length)
)
fasta.append(str(uniprot_seq))
# Save
if save:
file = open("gget_seq_results.fa", "w")
for element in fasta:
file.write(element + "\n")
file.close()
# missed samples
return (set(trans_ids) - set(df_uniprot["query"].values)) | set(missing)
return fasta
|