Collections:
Scan Prosite Database with Bio.ExPASy.ScanProsite.scan()
How to Scan Prosite Database with Bio.ExPASy.ScanProsite.scan() function?
✍: FYIcenter.com
Bio.ExPASy.ScanProsite.scan() function allows to scan the
Prosite database with a given sequence.
Here is an example on how to Scan Prosite Database.
fyicenter$ python
>>> from Bio.ExPASy import ScanProsite
>>> sequence = (
... "MEHKEVVLLLLLFLKSGQGEPLDDYVNTQGASLFSVTKKQLGAGSIEECAAKCEEDEEFT"
... "CRAFQYHSKEQQCVIMAENRKSSIIIRMRDVVLFEKKVYLSECKTGNGKNYRGTMSKTKN"
... )
>>> handle = ScanProsite.scan(seq=sequence)
>>> result = ScanProsite.read(handle)
>>> len(result)
1
>>> result[0]
{'sequence_ac': 'USERSEQ1', 'start': 16, 'stop': 98, 'signature_ac': 'PS50948', 'score': '8.873', 'level': '0'}
⇒ Read Sequence Alignments with Bio.AlignIO
⇐ Fetch Sequences from SwissProt with Bio.ExPASy.get_sprot_raw()
2023-09-05, 1528🔥, 0💬
Popular Posts:
Molecule Summary: ID: FYI-1003535 Names: InChIKey: LKJBZDLJZFBGEE-UHFFFAOYS A-NSMILES: N=C(N)NCCCC(N...
Molecule Summary: ID: FYI-1000380 SMILES: Cc1n[nH]c(C)c1c2cn(C)c3c (C(=O)O)cccc23.ClReceived at FYIc...
Molecule Summary: ID: FYI-1000327 SMILES: C[C@@](c1cc(ccc1F)F)(C(= O)OC)NReceived at FYIcenter.com o...
Molecule Summary: ID: FYI-1014498 Names: InChIKey: XNCGXOOZCYYDFK-UHFFFAOYS A-NSMILES: N#CC2C(=O)Oc1...
What are the differences between "babel" and "obabel" commands? "babel" and "obabel" commands are tw...