/etc/gbrowse/plugins/TrackDumper.pm is in gbrowse 2.56+dfsg-3build1.
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 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 | package Bio::Graphics::Browser2::Plugin::TrackDumper;
# $Id: TrackDumper.pm,v 1.3 2009-01-30 22:06:19 lstein Exp $
# test plugin
use strict;
use Bio::Graphics::Browser2::Plugin;
use Bio::Graphics::Browser2::TrackDumper;
use CGI qw(:standard *sup);
use vars '$VERSION','@ISA';
$VERSION = '1.00';
@ISA = qw/ Bio::Graphics::Browser2::Plugin /;
sub name { "Track Data" }
sub description {
p("The Track dumper plugin dumps out the currently selected tracks and their configuration in",
a({-href=>'http://www.sequenceontology.org/gff3.shtml'},'GFF Version 3 format.'),
"The information can be edited and then uploaded to this, or another GBrowse instance to create new tracks.",
"This plugin was written by Lincoln Stein & Sheldon McKay.");
}
sub config_defaults {
my $self = shift;
return {
version => 3,
mode => 'selected',
disposition => 'save',
coords => 'absolute',
region => 'selected',
embed => 0,
print_config=> 1,
};
}
sub reconfigure {
my $self = shift;
my $current_config = $self->configuration;
my @keys = keys %{$self->config_defaults};
foreach my $p ( @keys ) {
$current_config->{$p} = $self->config_param($p);
}
}
sub configure_form {
my $self = shift;
my $current_config = $self->configuration;
my $html = p('Dump',
popup_menu(-name => $self->config_name('mode'),
-values => ['selected','all'],
-default => $current_config->{mode},
-override => 1,
),
' features using GFF version',
popup_menu(-name => $self->config_name('version'),
-values => [2,2.5,3],
-labels => { 2 => '2',
2.5 => '2.5*',
3 => '3'},
-default => $current_config->{version},
-override => 1),
popup_menu(-name=>$self->config_name('region'),
-default=>$current_config->{region},
-override=>1,
-values => ['selected','all'],
-labels=>{all => 'Across entire genome',
selected => 'Across currently visible region'})
);
autoEscape(0);
$html .= p(
radio_group(-name=>$self->config_name('disposition'),
-values => ['view','save','edit'],
-labels => {view => 'View',
save => 'Save to File',
edit => 'Edit'.sup('**'),
}
));
$html .= p(
checkbox(-name=>$self->config_name('embed'),
-checked=>$current_config->{embed},
-override=>1,
-label=>'Embed DNA sequence in the file')
);
$html .= p(
checkbox(-name=>$self->config_name('print_config'),
-checked=>$current_config->{print_config},
-override=>1,
-label=>'Include track configuration data')
);
autoEscape(1);
my $href = a( {-href => 'javascript:void(0)', -onclick => "alert('" .
"\\'Target\\' syntax in the group field:\\n" .
"GFF2: Target class:name start stop\\n" .
"GFF2.5: Target class:name ; tstart start ; tstop stop\\n')"},
"similarity target" );
$html .= p(sup('*'),
"GFF2.5 is GFF2 with a special syntax for $href"
) .
p(sup('**'),
"To edit, install a helper application for MIME type",
cite('application/x-gff2'),'or',
cite('application/x-gff3')
);
$html;
}
sub mime_type {
my $self = shift;
my $config = $self->configuration;
my $ps = $self->page_settings;
my $base = join '_',@{$ps}{qw(ref start stop)};
my $gff = $config->{version} < 3 ? 'gff2' : 'gff3';
return $config->{disposition} eq 'view' ? 'text/plain'
:$config->{disposition} eq 'save' ? ('application/octet-stream',"$base.$gff")
:$config->{disposition} eq 'edit' ? "application/x-${gff}"
:'text/plain';
}
sub dump {
my $self = shift;
my ($segment, @more_feature_sets) = @_;
my $conf = $self->browser_config;
my $page_settings = $self->page_settings;
my $config = $self->configuration;
my $version = $config->{version} || 3;
my $mode = $config->{mode} || 'selected';
my $entire_genome = $config->{region} && $config->{region} eq 'all';
my $db = $self->database;
my $whole_segment = $db->segment(Accession => $segment->seq_id) ||
$db->segment($segment->seq_id);
my $coords = $config->{coords};
my $embed = $config->{embed};
my $thing_to_dump = $entire_genome ? $segment->db : $segment;
# safest thing to do is to use embedded logic
if ($version == 3 && $config->{print_config}) {
my $dumper = Bio::Graphics::Browser2::TrackDumper->new(
-data_source => $conf,
-id => $page_settings->{userid},
-segment => $segment->seq_id.':'.$segment->start.'..'.$segment->end,
-labels => $mode eq 'selected'
? [$self->selected_tracks]
: []
) or return;
$dumper->print_datafile();
}
elsif ($config->{print_config}) {
Bio::Graphics::Browser2::TrackDumper->print_configuration
($self->browser_config,
$mode eq 'selected' ? [$self->selected_tracks] : ()
);
$self->print_gff($thing_to_dump,@more_feature_sets);
}
else {
$self->print_gff($thing_to_dump,@more_feature_sets);
}
if ( $embed && !$entire_genome) {
my $dna = $segment->dna;
$dna =~ s/(\S{60})/$1\n/g;
print ">$segment\n$dna\n" if $dna;
}
}
sub print_gff {
my $self = shift;
my ($segment, @more_feature_sets) = @_;
my $config = $self->configuration;
my $version = $config->{version} || 3;
my $mode = $config->{mode} || 'selected';
my $date = localtime;
print "##gff-version $version\n";
print "##date $date\n";
eval {print "##sequence-region ",join(' ',$segment->ref,$segment->start,$segment->stop),"\n"};
print "##source gbrowse GFFDumper plugin\n";
print $mode eq 'selected' ? "##NOTE: Selected features dumped.\n"
: "##NOTE: All features dumped.\n";
my @args;
if ($mode eq 'selected') {
my @feature_types = $self->selected_features;
@args = (-types => \@feature_types);
}
my @feats = ();
my $iterator = $segment->get_seq_stream(@args);
while ( my $f = $iterator->next_seq ) {
$self->print_feature($f,$version);
}
for my $set (@more_feature_sets) {
if ( $set->can('get_seq_stream') ) {
my @feats = ();
my $iterator = $set->get_seq_stream;
while ( my $f = $iterator->next_seq ) {
$self->print_feature($f);
}
}
}
}
sub print_feature {
my $self = shift;
my ($f,$version) = @_;
$version ||= 3;
eval{$f->version($version)};
my $s = $f->gff_string(1); # the flag is for GFF3 subfeature recursion
chomp $s;
print $s,"\n";
return if $version >= 3; # gff3 recurses automatically
for my $ss ($f->sub_SeqFeature) {
# next if $ss eq $f;
my $s = $ss->gff_string;
print $s,"\n";
}
}
1;
|