![]() |
BioPHP: PHP for Biocomputing |
![]() |
Last updated: May 12, 2003
Medium-length scripts | top |
Sequence Records Query-by-Example (QBE) Script
Six-frame Protein Translation Script
Six-frame Protein Translation Script Version 2
Reverse Protein Translation Script
Find a Pair of Restriction Sites in a Sequence
|
Short scripts | top |
Nucleotide Pattern Matching Script
Simple script that lists all sequences that contain a given nucleotide pattern. This makes use of the expand_na() and patposo() methods of the Seq class. The algorithm used is not optimized for large databases.
Charge/Chemgroup String Script [ View source code ]
Simple script that demonstrates the use of charge() and chemgrp() methods of the Seq class.
Simple script that demonstrates the use of hamdist() and levdist() methods of the SeqMatch class.
Protein Translation Script [ View source code ]
Simple script that demonstrates the use of the translate() method of the Seq class. It accepts a nucleic acid sequence and translates it into an amino acid sequence.
Find Mirror/Palindrome in a Sequence
Searches for genetic mirrors and palindromes in a given nucleic sequence. Demonstrates the use of the find_mirror() and find_palindrome() methods of the Seq class.
Various Methods of the Seq class
Demonstrates the use of molwt(), complement(), revcomp(), and simpler methods of the Seq class.
Find Fragments from Restriction Enzyme Digest [ View source code ]
Completely digests (cuts) a given nucleotide sequence using a given restriction enzyme.