Last active
October 30, 2015 15:58
-
-
Save nickpettican/d2cfc146a96fcbb4be69 to your computer and use it in GitHub Desktop.
Ion Stats
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl -w | |
# | |
use strict; | |
use Getopt::Long; | |
# You might want to have a flag --binwidth and --bintarget | |
# perl ion_stats.pl --binwidth 30 --bintarget 150 | |
# the above would specify bin parameters: 135-165 | |
my $binwidth; | |
my $bintarget; | |
GetOptions ("binwidth" => \$binwidth, | |
"bintarget" => \$bintarget); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment