Hello!

To see the file structure, click on "tree".

Note that updates take place every 10 minutes, commits may not be seen immediately.
Change filename split so that errant dashes won't cause incorrect species lookups
authorelserj <elserj@localhost>
Thu, 23 Sep 2010 20:54:56 +0000 (20:54 +0000)
committerelserj <elserj@localhost>
Thu, 23 Sep 2010 20:54:56 +0000 (20:54 +0000)
svn path=/; revision=48

interactome_scripts/inparanoid_output_parse.pl

index bb8de08839c331f818bcd420fe3fec271051af71..350270c077545c5a041f5128e0284d719410fac7 100755 (executable)
@@ -97,7 +97,7 @@ foreach my $input_file (@files) {
 
        
 
-       my ($species_1, $species_2) = split("-", $input_file);
+       my ($species_1, $species_2) = split("fa-", $input_file);
        $species_1 = find_species($species_1);
        $species_2 = find_species($species_2);
        my $species_table = $species_1."_".$species_2;