Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

bio::primerdesigner::tables(3pm) [debian man page]

Bio::PrimerDesigner::Tables(3pm)			User Contributed Perl Documentation			  Bio::PrimerDesigner::Tables(3pm)

NAME
Bio::PrimerDesigner::Table -- Draw HTML tables for PCR primer display DESCRIPTION
Draws simple HTML tables to display Bio::PrimerDesigner PCR primer design and e-PCR results for web applications. METHODS
info_table Prints a two-column table for generic, key-value style annotations. Expects to be passed the name of the gene/feature/etc. and a hash of attributes. If there is an 'image' key, the value is assumed to be an image URL, which is printed in a double-wide cell at the bottom of the table. my $gene = 'Abc-1'; my %gene_info = ( Chromosome => I, Start => 100450, Stop => 102893, Strand => '+' ); my $page = Bio::PrimerDesigner::Tables->new; $page->info_table( $gene, %gene_info ); PCR_header Returns a generic header for the PCR primer table. Does not expect any argumments. PCR_set Returns the top row for the PCR primer table. Expects the primer set number as its only argument. PCR_row Returns table rows with PCR primer info. Should be called once for each primer pair. Expects to be passed a hash containing the Bio::PrimerDesigner::Result object and the primer set number and an (optional) label. my $pcr_row = PCR_row( primers => $result_obj, setnum => $set_number, label => $label ); ePCR_row Returns table rows summarizing e-PCR results. Expects to be passed an Bio::PrimerDesigner::Result e-PCR results object and an optional e-PCR label. render Renders the image URL. Expects to be passed a hash of the map start and stop, and other features to be mapped (i.e. gene,forward_primer,reverse_primer, label,start and stop of each feature, and gene strand). my $image = $page->render( start => $startleft, stop => $startright, feat => $features ); PCR_map Returns a 6 column wide table cell with the <IMG ...> info. Will display the image of mapped primers in the browser when passed the image URL. AUTHOR
Copyright (C) 2003-2009 Sheldon McKay <mckays@cshl.edu>. LICENSE
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 3 or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. SEE ALSO
Bio::PrimerDesigner::primer3, Bio::PrimerDesigner::epcr. perl v5.10.0 2009-08-04 Bio::PrimerDesigner::Tables(3pm)

Check Out this Related Man Page

Bio::Tools::Primer::Feature(3pm)			User Contributed Perl Documentation			  Bio::Tools::Primer::Feature(3pm)

NAME
Bio::Tools::Primer::Feature - position of a single primer SYNOPSIS
use Bio::Tools::Primer::Feature; my $pf = Bio::Tools::Primer::Feature->new( -start => $start, -end => $end, -strand => $strand); $pf->attach_seq($seq); # is a SeqFeatureI print "primer starts at ",$pf->start," with sequence ",$pf->seq->seq()," "; # helper functions print "GC percentage ",$pf->gc()," "; print "has inversion of size 4 at ",$pf->inversion(4)," "; DESCRIPTION
Primer Features represents one primer in a primer pair. This object is mainly for designing primers, and probably principly used in the primer design system FEEDBACK
Mailing Lists User feedback is an integral part of the evolution of this and other Bioperl modules. Send your comments and suggestions preferably to the Bioperl mailing list. Your participation is much appreciated. bioperl-l@bioperl.org - General discussion http://bioperl.org/wiki/Mailing_lists - About the mailing lists Support Please direct usage questions or support issues to the mailing list: bioperl-l@bioperl.org rather than to the module maintainer directly. Many experienced and reponsive experts will be able look at the problem and quickly address it. Please include a thorough description of the problem with code and data examples if at all possible. Reporting Bugs Report bugs to the Bioperl bug tracking system to help us keep track of the bugs and their resolution. Bug reports can be submitted via the web: https://redmine.open-bio.org/projects/bioperl/ AUTHOR - Ewan Birney Email birney-at-ebi.ac.uk APPENDIX
The rest of the documentation details each of the object methods. Internal methods are usually preceded with a _ perl v5.14.2 2012-03-02 Bio::Tools::Primer::Feature(3pm)
Man Page