Skip to content

Commit

Permalink
Consistent shebang line to '+#!/usr/bin/perl'
Browse files Browse the repository at this point in the history
During installation, the shebang line is automatically replaced with
the perl used for installation (assuming that the distribution was
done with bioperl's distzilla plugin bundle).  This makes sense
because that's the only perl we know for sure will have bioperl
installed.

However, MakeMaker does not replace the shebang line if it's using
/usr/bin/env perl.  So let's be consistent.
  • Loading branch information
carandraug committed Sep 4, 2018
1 parent 0a5dd86 commit b7f19eb
Show file tree
Hide file tree
Showing 32 changed files with 32 additions and 32 deletions.
2 changes: 1 addition & 1 deletion scripts/Bio-DB-SeqFeature-Store/bp_seqfeature_gff3.pl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env perl
#!/usr/bin/perl
# AUTHOR: malcolm.cook@stowers-institute.org

use strict;
Expand Down
2 changes: 1 addition & 1 deletion scripts/DB-HIV/bp_hivq.pl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!perl
#!/usr/bin/perl
# command-line script for HIV sequence queries
# using HIV.pm and HIVQuery.pm

Expand Down
2 changes: 1 addition & 1 deletion scripts/DB/bp_biofetch_genbank_proxy.pl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!perl
#!/usr/bin/perl

# dbfetch style caching proxy for GenBank
use strict;
Expand Down
2 changes: 1 addition & 1 deletion scripts/DB/bp_biogetseq.pl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!perl
#!/usr/bin/perl
#
# OBDA Registry compliant sequence retrieval script
#
Expand Down
2 changes: 1 addition & 1 deletion scripts/DB/bp_flanks.pl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!perl
#!/usr/bin/perl
# -*-Perl-*-
#
# Heikki Lehvaslaiho <heikki-at-bioperl-dot-org>
Expand Down
2 changes: 1 addition & 1 deletion scripts/searchio/bp_filter_search.pl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!perl
#!/usr/bin/perl
use strict;
use warnings;

Expand Down
2 changes: 1 addition & 1 deletion scripts/searchio/bp_hmmer_to_table.pl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!perl
#!/usr/bin/perl
use strict;
use warnings;

Expand Down
2 changes: 1 addition & 1 deletion scripts/seq/bp_extract_feature_seq.pl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!perl
#!/usr/bin/perl
use strict;
use warnings;
use Bio::SeqIO;
Expand Down
2 changes: 1 addition & 1 deletion scripts/seq/bp_make_mrna_protein.pl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!perl
#!/usr/bin/perl
#
=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion scripts/seq/bp_seqconvert.pl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!perl
#!/usr/bin/perl

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion scripts/seq/bp_seqcut.pl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env perl
#!/usr/bin/perl

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion scripts/seq/bp_seqpart.pl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env perl
#!/usr/bin/perl
use strict;
use warnings;

Expand Down
2 changes: 1 addition & 1 deletion scripts/seq/bp_split_seq.pl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!perl
#!/usr/bin/perl
use strict;
use warnings;

Expand Down
2 changes: 1 addition & 1 deletion scripts/seq/bp_translate_seq.pl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!perl
#!/usr/bin/perl
use strict;
use warnings;

Expand Down
2 changes: 1 addition & 1 deletion scripts/seq/bp_unflatten_seq.pl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!perl
#!/usr/bin/perl
use strict;
use warnings;
# Author Chris Mungall <cjm-at-bioperl.org>
Expand Down
2 changes: 1 addition & 1 deletion scripts/seqstats/bp_aacomp.pl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!perl
#!/usr/bin/perl
use strict;
use warnings;
use Carp;
Expand Down
2 changes: 1 addition & 1 deletion scripts/seqstats/bp_chaos_plot.pl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!perl
#!/usr/bin/perl

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion scripts/seqstats/bp_gccalc.pl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!perl
#!/usr/bin/perl

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion scripts/seqstats/bp_oligo_count.pl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!perl
#!/usr/bin/perl
#
# oligomer_freq.pl
# We use this to determine what primers are useful for frequent priming of
Expand Down
2 changes: 1 addition & 1 deletion scripts/taxa/bp_taxid4species.pl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!perl
#!/usr/bin/perl
# Author: Jason Stajich <jason@bioperl.org>
# Purpose: Retrieve the NCBI Taxa ID for organism(s)

Expand Down
2 changes: 1 addition & 1 deletion scripts/tree/bp_nexus2nh.pl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!perl
#!/usr/bin/perl

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion scripts/tree/bp_tree2pag.pl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!perl
#!/usr/bin/perl

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion scripts/utilities/bp_dbsplit.pl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!perl
#!/usr/bin/perl
#-*-Perl-*-

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion scripts/utilities/bp_find-blast-matches.pl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env perl
#!/usr/bin/perl
use strict;
use warnings;

Expand Down
2 changes: 1 addition & 1 deletion scripts/utilities/bp_mask_by_search.pl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!perl
#!/usr/bin/perl
# Author: Jason Stajich <jason-at-bioperl-dot-org>


Expand Down
2 changes: 1 addition & 1 deletion scripts/utilities/bp_mrtrans.pl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!perl
#!/usr/bin/perl
use strict;

# Author: Jason Stajich <jason-at-bioperl-dot-org>
Expand Down
2 changes: 1 addition & 1 deletion scripts/utilities/bp_nrdb.pl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!perl
#!/usr/bin/perl

# Author Jason Stajich <jason-at-bioperl-dot-org>
#
Expand Down
2 changes: 1 addition & 1 deletion scripts/utilities/bp_search2alnblocks.pl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!perl
#!/usr/bin/perl
# Author: Jason Stajich <jason-at-bioperl-dot-org>
# Description: Turn SearchIO parseable report(s) into a set of Aligned blocks
#
Expand Down
2 changes: 1 addition & 1 deletion scripts/utilities/bp_search2gff.pl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!perl
#!/usr/bin/perl

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion scripts/utilities/bp_search2tribe.pl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!perl
#!/usr/bin/perl

# Author: Jason Stajich <jason-at-bioperl-dot-org>
# Description: Turn SearchIO parseable report(s) into a TRIBE matrix
Expand Down
2 changes: 1 addition & 1 deletion scripts/utilities/bp_seq_length.pl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!perl
#!/usr/bin/perl

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion scripts/utilities/bp_sreformat.pl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!perl
#!/usr/bin/perl
# Author: Jason Stajich <jason-at-bioperl-dot-org>
# Purpose: Bioperl implementation of Sean Eddy's sreformat
# We're not as clever as Sean's squid library though so
Expand Down

0 comments on commit b7f19eb

Please sign in to comment.