.\" Automatically generated by Pod::Man 4.10 (Pod::Simple 3.35) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" Set up some character translations and predefined strings. \*(-- will .\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left .\" double quote, and \*(R" will give a right double quote. \*(C+ will .\" give a nicer C++. Capital omega is used to do unbreakable dashes and .\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff, .\" nothing in troff, for use with C<>. .tr \(*W- .ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' .ie n \{\ . ds -- \(*W- . ds PI pi . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch . ds L" "" . ds R" "" . ds C` "" . ds C' "" 'br\} .el\{\ . ds -- \|\(em\| . ds PI \(*p . ds L" `` . ds R" '' . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" ======================================================================== .\" .IX Title "Bio::Tools::Motif 3pm" .TH Bio::Tools::Motif 3pm "2018-11-01" "perl v5.28.0" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH "NAME" Bio::Tools::Motif \- Perl implementation of the Motif protein subcellular localization method. .SH "SYNOPSIS" .IX Header "SYNOPSIS" .Vb 1 \& use Bio::Tools::Motif; \& \& # Load a previously trained model from a file. \& $motif = new Bio::Tools::Motif(\-database => \*(Aqmotif\-db.txt\*(Aq); \& \& # Attempt to match on a Bio::Seq object. \& @matches = $motif\->match($seq); \& print($seq\->display_id . ": matched " . $_\->motif_id . "\en") for(@matches); \& \& # Save the database to a file. \& $motif\->save(\*(Aqmotif\-db.txt.new\*(Aq); \& \& # Load a database from a file. \& $motif\->load(\*(Aqmotif\-db.txt.new\*(Aq); \& \& # Add a new Bio::Tools::Motif::Pattern. \& $motif\->add_pattern($pattern); .Ve .SH "DESCRIPTION" .IX Header "DESCRIPTION" Bio::Tools::Motif uses a selection of motifs that have been identified to be typical of proteins resident at a specific subcellular localization. The module accepts a Bio::Seq object and attempts to match it against a database, returning one or more Bio::Tools::Motif::Match objects with the prediction information if successful. .SH "CONSTRUCTOR" .IX Header "CONSTRUCTOR" .Vb 1 \& $motif = new Bio::Tools::Motif(\-database => \*(Aqmotif\-db.txt\*(Aq); .Ve .PP The Motif constructor accepts the name of an existing database file. .SH "METHODS" .IX Header "METHODS" .Vb 1 \& @matches = $motif\->match($seq); .Ve .PP The match method accepts a Bio::Seq object as an argument and returns an array of Bio::Tools::Motif::Match objects that matched the given sequence. .PP .Vb 1 \& $motif\->add_pattern($pattern) .Ve .PP The add_pattern method adds another Bio::Tools::Motif::Pattern method to the list of patterns used to match against sequences. .PP .Vb 1 \& $motif\->save(\*(Aqmotif\-db.txt.new\*(Aq); .Ve .PP Saves the currently loaded database to the specified file. Returns true on success, false on failure. .PP .Vb 1 \& $motif\->load(\*(Aqmotif\-db.txt.new\*(Aq); .Ve .PP Loads an existing database from file. Returns true on success, false on failure. .PP The database is a file containing a series of tab delimited fields. The fields (in order) are: the motif \s-1ID,\s0 the localization site, the perl regular expression used to match the motif and an optional comment field. .SH "AUTHOR" .IX Header "AUTHOR" Cory Spencer .SH "SEE ALSO" .IX Header "SEE ALSO" Bio::Tools::Motif::Pattern, Bio::Tools::Motif::Match .SH "ACKNOWLEGEMENTS" .IX Header "ACKNOWLEGEMENTS" Thanks go out to Fiona Brinkman, Jennifer Gardy and the other members of the Simon Fraser University Brinkman laboratory.