/usr/share/perl5/Bio/Map/LinkageMap.pm is in libbio-perl-perl 1.6.923-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 | # BioPerl module for Bio::Map::LinkageMap
#
# Please direct questions and support issues to <bioperl-l@bioperl.org>
#
# Cared for by Sendu Bala <bix@sendu.me.uk>
#
# Copyright Chad Matsalla
#
# You may distribute this module under the same terms as perl itself
# POD documentation - main docs before the code
=head1 NAME
Bio::Map::LinkageMap - A representation of a genetic linkage map.
=head1 SYNOPSIS
use Bio::Map::LinkageMap;
# create a new map
my $map = Bio::Map::LinkageMap->new(-name => 'Chads Superterriffic Map',
-type => 'Linkage',
-units=> 'cM');
# create the location of a marker for that map
my $position = Bio::Map::LinkagePosition->new( -positions => 1,
-distance => "22.3");
# create a marker and place it at that position
my $marker = Bio::Map::Marker::Microsatellite->new(
-name => 'SuuuperMarker',
-position => $position);
# place that marker on that map
$map->add_element($marker);
# done!
=head1 DESCRIPTION
This object describes the basic functionality of a genetic linkage map in
Bioperl. Each 'position' can have one or more markers that map some number of
units from the markers at the previous position.
=head1 FEEDBACK
=head2 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
=head2 Support
Please direct usage questions or support issues to the mailing list:
I<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.
=head2 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/
=head1 AUTHOR - Chad Matsalla
Email bioinformatics1@dieselwurks.com
=head1 CONTRIBUTORS
Lincoln Stein lstein@cshl.org
Heikki Lehvaslaiho heikki-at-bioperl-dot-org
Jason Stajich jason@bioperl.org
Sendu Bala bix@sendu.me.uk
=head1 APPENDIX
The rest of the documentation details each of the object methods.
Internal methods are usually preceded with a _
=cut
# Let the code begin...
package Bio::Map::LinkageMap;
use strict;
use base qw(Bio::Map::SimpleMap);
=head2 new
Title : new
Usage : my $linkage_map = Bio::Map::LinkageMap->new();
Function: Builds a new Bio::Map::LinkageMap object
Returns : Bio::Map::LinkageMap
Args : -name => the name of the map (string) [optional]
-type => the type of this map (string, defaults to Linkage) [optional]
-species => species for this map (Bio::Species) [optional]
-units => the map units (string, defaults to cM) [optional]
-elements=> elements to initialize with
(arrayref of Bio::Map::MappableI objects) [optional]
-uid => Unique ID of this map
=cut
=head2 length
Title : length
Usage : my $length = $map->length();
Function: Retrieves the length of the map. In the case of a LinkageMap, the
length is the sum of all marker distances.
Returns : An integer representing the length of this LinkageMap. Will return
0 if length is not calculateable
Args : None.
=cut
sub length {
my ($self) = @_;
$self->throw("Not yet implemented correctly");
my $total_distance;
foreach my $element (@{$self->get_elements}) {
#*** there is no such method ->each_position_value!
$total_distance += ($element->position->each_position_value($self))[0];
}
return $total_distance;
}
=head2 add_element($marker)
Title : add_element($marker)
Usage : $map->add_element($marker)
Function: Add a Bio::Map::MappableI object to the Map
Returns : none
Args : Bio::Map::MappableI object
Notes : It is strongly recommended that you use a
Bio::Map::LinkagePosition as the position in any
Bio::Map::Mappable that you create to place on this
map. Using some other Bio::Map::Position might work but might
be unpredictable.
N.B. I've added Bio::Map::OrderedPosition which should achieve
similar things from LinkagePosition and will work for
RH markers too.
=cut
#*** what is this? what calls it? note that it seems to be private
sub _add_element_will_be_deleted {
my ($self,$marker) = @_;
my $o_position = $marker->position();
$self->debug( "marker position is ". $marker->position());
# print("add_element: \$o_position is $o_position\n");
# print("add_element: \$marker is $marker\n");
my $position;
unless ( $o_position->isa('Bio::Map::LinkagePosition') ||
$o_position->isa('Bio::Map::OrderedPosition')
) {
$self->warn("You really should use a Linkage Position for this object. This insures that there is only one position. Trying anyway...");
my @p = ( $o_position->each_position_value($self));
$position = shift @p;
if( ! defined $position ) {
$self->throw("This marker ($marker) does not have a position in this map ($self)");
}
} else {
$position = $o_position->order;
}
if ($self->{'_elements'}[$position]) {
$self->warn("Replacing the marker in position $position because in a linkage map the position is a key.");
}
$self->{'_elements'}[$position] = $marker;
}
1;
|