.\" -*- mode: troff; coding: utf-8 -*- .\" Automatically generated by Pod::Man 5.01 (Pod::Simple 3.43) .\" .\" 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 .. .\" \*(C` and \*(C' are quotes in nroff, nothing in troff, for use with C<>. .ie n \{\ . ds C` "" . ds C' "" 'br\} .el\{\ . 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::Run::TribeMCL 3pm" .TH Bio::Tools::Run::TribeMCL 3pm 2024-03-12 "perl v5.38.2" "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::Run::TribeMCL \- Markov method for CLustering proteins .SH SYNOPSIS .IX Header "SYNOPSIS" .Vb 2 \& use Bio::Tools::Run::TribeMCL; \& use Bio::SearchIO; \& \& # 3 methods to input the blast results \& \& # straight forward raw blast output (NCBI or WU\-BLAST) \& my @params = (\*(Aqinputtype\*(Aq=>\*(Aqblastfile\*(Aq); \& \& # OR \& \& # markov program format \& # protein_id1 protein_id2 evalue_magnitude evalue_factor \& # for example: \& # proteins ENSP00000257547 and ENSP00000261659 \& # with a blast score evalue of 1e\-50 \& # and proteins O42187 and ENSP00000257547 \& # with a blast score evalue of 1e\-119 \& # entry would be \& \& my @array = [[qw(ENSP00000257547 ENSP00000261659 1 50)], \& [qw(O42187 ENSP00000257547 1 119)]]; \& my @params = (\*(Aqpairs\*(Aq=>\e@array,I=>\*(Aq2.0\*(Aq); \& \& # OR \& \& # pass in a searchio object \& # slowest of the 3 methods as it does more rigourous parsing \& # than required for us here \& \& my $sio = Bio::SearchIO\->new(\-format=>\*(Aqblast\*(Aq, \& \-file=>\*(Aqblast.out\*(Aq); \& my @params=(\*(Aqinputtype\*(Aq=>\*(Aqsearchio\*(Aq,I=>\*(Aq2.0\*(Aq); \& \& \& # you can specify the path to the executable manually in the following way \& my @params=(\*(Aqinputtype\*(Aq=>\*(Aqblastfile\*(Aq,I=>\*(Aq2.0\*(Aq, \& \*(Aqmcl\*(Aq=>\*(Aq/home/shawn/software/mcl\-02\-150/src/shmcl/mcl\*(Aq, \& \*(Aqmatrix\*(Aq=>\*(Aq/home/shawn/software/mcl\-02\-150/src/contrib/tribe/tribe\-matrix\*(Aq); \& my $fact = Bio::Tools::Run::TribeMCL\->new(@params); \& \& # OR \& \& $fact\->matrix_executable(\*(Aq/home/shawn/software/mcl\-02\-150/src/contrib/tribe/tribe\-matrix\*(Aq); \& $fact\->mcl_executable(\*(Aq/home/shawn/software/mcl\-02\-150/src/shmcl/mcl\*(Aq); \& \& # to run \& \& my $fact = Bio::Tools::Run::TribeMCL\->new(@params); \& \& # Run the program \& # returns an array reference to clusters where members are the ids \& # for example :2 clusters with 3 members per cluster: \& # $fam = [ [mem1 mem2 mem3],[mem1 mem2 mem3]] \& \& # pass in either the blastfile path/searchio obj/the array ref to scores \& my $fam = $fact\->run($sio); \& \& # print out your clusters \& \& for (my $i = 0; $i [$i]})." members\en"; \& foreach my $member (@{$fam\->[$i]}){ \& print "\et$member\en"; \& } \& } .Ve .SH DESCRIPTION .IX Header "DESCRIPTION" TribeMCL is a method for clustering proteins into related groups, which are termed 'protein families'. This clustering is achieved by analysing similarity patterns between proteins in a given dataset, and using these patterns to assign proteins into related groups. In many cases, proteins in the same protein family will have similar functional properties. .PP TribeMCL uses a novel clustering method (Markov Clustering or MCL) which solves problems which normally hinder protein sequence clustering. .PP Reference: .PP .Vb 2 \& Enright A.J., Van Dongen S., Ouzounis C.A; Nucleic Acids \& Res. 30(7):1575\-1584 (2002) .Ve .PP You will need tribe-matrix (the program used to generate the matrix for input into mcl) and mcl (the clustering software) available at: .PP .Vb 2 \& http://www.ebi.ac.uk/research/cgg/tribe/ or \& http://micans.org/mcl/. .Ve .PP Future Work in this module: Port the tribe-matrix program into perl so that we can enable have a SearchIO kinda module for reading and writing mcl data format .SH FEEDBACK .IX Header "FEEDBACK" .SS "Mailing Lists" .IX Subsection "Mailing Lists" User feedback is an integral part of the evolution of this and other Bioperl modules. Send your comments and suggestions preferably to one of the Bioperl mailing lists. Your participation is much appreciated. .PP .Vb 2 \& bioperl\-l@bioperl.org \- General discussion \& http://bioperl.org/wiki/Mailing_lists \- About the mailing lists .Ve .SS Support .IX Subsection "Support" Please direct usage questions or support issues to the mailing list: .PP \&\fIbioperl\-l@bioperl.org\fR .PP 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. .SS "Reporting Bugs" .IX Subsection "Reporting Bugs" Report bugs to the Bioperl bug tracking system to help us keep track the bugs and their resolution. Bug reports can be submitted via the web: .PP .Vb 1 \& http://redmine.open\-bio.org/projects/bioperl/ .Ve .SH "AUTHOR \- Shawn Hoon" .IX Header "AUTHOR - Shawn Hoon" Email shawnh@fugu\-sg.org .SH APPENDIX .IX Header "APPENDIX" The rest of the documentation details each of the object methods. Internal methods are usually preceded with a "_". .SS mcl_executable .IX Subsection "mcl_executable" .Vb 6 \& Title : mcl_executable \& Usage : $self\->mcl_executable() \& Function: get set for path to mcl executable \& Returns : String or undef if not installed \& Args : [optional] string of path to executable \& [optional] boolean to warn on missing executable status .Ve .SS matrix_executable .IX Subsection "matrix_executable" .Vb 6 \& Title : matrix_executable \& Usage : $self\->matrix_executable() \& Function: get set for path to tribe\-matrix executable \& Returns : String or undef if not installed \& Args : [optional] string of path to executable \& [optional] boolean to warn on missing executable status .Ve .SS run .IX Subsection "run" .Vb 5 \& Title : run \& Usage : $self\->run() \& Function: runs the clustering \& Returns : Array Ref of clustered Ids \& Args : .Ve .SS _run_mcl .IX Subsection "_run_mcl" .Vb 5 \& Title : _run_mcl \& Usage : $self\->_run_mcl() \& Function: internal function for running the mcl program \& Returns : Array Ref of clustered Ids \& Args : Index_file name, matrix input file name .Ve .SS _run_matrix .IX Subsection "_run_matrix" .Vb 5 \& Title : _run_matrix \& Usage : $self\->_run_matrix() \& Function: internal function for running the tribe\-matrix program \& Returns : index filepath and matrix file path \& Args : filepath of parsed ids and scores .Ve .SS _setup_input .IX Subsection "_setup_input" .Vb 6 \& Title : _setup_input \& Usage : $self\->_setup_input() \& Function: internal function for running setting up the inputs \& needed for running mcl \& Returns : filepath of parsed ids and scores \& Args : .Ve .SS _get_from_hsp .IX Subsection "_get_from_hsp" .Vb 5 \& Title : _get_from_hsp \& Usage : $self\->_get_from_hsp() \& Function: internal function for getting blast scores from hsp \& Returns : array ref to ids and score [protein1 protein2 magnitude factor] \& Args : L .Ve .SS _get_from_searchio .IX Subsection "_get_from_searchio" .Vb 5 \& Title : _get_from_searchio \& Usage : $self\->_get_from_searchio() \& Function: internal function for parsing blast scores from searchio object \& Returns : array ref to ids and score [protein1 protein2 magnitude factor] \& Args : L .Ve .SS _parse_blastfile .IX Subsection "_parse_blastfile" .Vb 6 \& Title : _parse_blastfile \& Usage : $self\->_parse_blastfile() \& Function: internal function for quickly parsing blast evalue \& scores from raw blast output file \& Returns : array ref to ids and score [protein1 protein2 magnitude factor] \& Args : file path .Ve .SS _parse_mcl .IX Subsection "_parse_mcl" .Vb 6 \& Title : _parse_mcl \& Usage : $self\->_parse_mcl() \& Function: internal function for quickly parsing mcl output and \& generating the array of clusters \& Returns : Array Ref of clustered Ids \& Args : index file path, mcl output file path .Ve