/usr/bin/tradis_plot is in bio-tradis 1.3.3+dfsg-3.
This file is owned by root:root, with mode 0o755.
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 | #!/usr/bin/env perl
package Bio::Tradis::Bin::TradisPlot;
# ABSTRACT: Generate plots as part of a tradis analysis
# PODNAME: tradis_plot
=head1 SYNOPSIS
Generate insertion plots for Artemis from a mapped fastq file and
a reference in GFF format
=cut
BEGIN { unshift( @INC, '../lib' ) }
BEGIN { unshift( @INC, './lib' ) }
BEGIN { unshift( @INC, '/software/pathogen/internal/prod/lib/' ) }
use Bio::Tradis::CommandLine::PlotTradis;
Bio::Tradis::CommandLine::PlotTradis->new(args => \@ARGV, script_name => $0)->run;
|