Skip to content

Commit

Permalink
Release 1.02
Browse files Browse the repository at this point in the history
  • Loading branch information
fortune9 committed May 17, 2015
1 parent e90fc6c commit 6238907
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Tutorial.pod
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
=pod

=head1 NAME

Tutorial for Bio::CUA


=cut

15 changes: 15 additions & 0 deletions t/env.pm
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package env;

use File::Spec;

# my $os = $^O;
# my $set = $os =~ /MSWin/i? 'set' : 'export';
my $expFile = File::Spec->catfile('t', 'expected.tsv');
my $seqFile = File::Spec->catfile('t', 'test.fa');
my $tRNAFile = File::Spec->catfile('t', 'dmel_r5_apr2006.tRNA_copy');

$ENV{'expected_file'} = $expFile;
$ENV{'seq_file'} = $seqFile;
$ENV{'tRNA_file'} = $tRNAFile;

1;

0 comments on commit 6238907

Please sign in to comment.