Collections:
Create Motif With Biopython Bio.motifs Module
How to Create Motif With Biopython Bio.motifs Module?
✍: FYIcenter.com
Biopython Bio.motifs Module allows you to create a motif object
with a list of DNA or protein sequences.
A motif object actually represents a sample set of sequences
that matches a sequence motif pattern.
1. Create a motif object with a single sequence that matches the motif pattern of "TACAA".
fyicenter$ python >>> from Bio import motifs >>> m = motifs.create(["TACAA"]) >>> len(m) 5 >>> print(m) TACAA
2. Create a motif object with 7 sequences that matches the motif pattern of "[AT]A[CT][ACG][AC]".
>>> samples = [ ... "TACAA", ... "TACGC", ... "TACAC", ... "TACCC", ... "AACCC", ... "AATGC", ... "AATGC" ... ] >>> m = motifs.create(samples) >>> len(m) 5 >>> print(m) TACAA TACGC TACAC TACCC AACCC AATGC AATGC
⇒ Motif Counts and Consensus with Bio.motifs
⇐ What Is Sequence Motif Analysis
2023-07-11, 1119🔥, 0💬
Popular Posts:
Molecule Summary: ID: FYI-1003294 Names: InChIKey: RLJQKMDDWVEIGY-UHFFFAOYS A-NSMILES: COc3cccc(c2nc...
Molecule Summary: ID: FYI-1005850 Names: InChIKey: TZNQBXMMPSETQC-UHFFFAOYS A-NSMILES: CN1C(=O)NCC1C...
Molecule Summary: ID: FYI-1001005 SMILES: C12CCC(C)3C(C(C)CCC(=O)O )CCC3C1C(I)CC(C)1CCCCC12 CReceived...
Molecule Summary: ID: FYI-1003113 Names: InChIKey: MWAPTJDKEDUKSI-VCHYOVAHS A-NSMILES: COc3ccc(/C=N/...
Molecule Summary: ID: FYI-1004200 Names: InChIKey: ZMOMBHNITWAALH-KTKRTIGZS A-NSMILES: CCCCCCCC/C=C\...