Hello!

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

Note that updates take place every 10 minutes, commits may not be seen immediately.
Modify trans_filter so that Saliva_hispanica is not counted
authorelserj <elserj@localhost>
Wed, 16 Sep 2020 21:55:45 +0000 (21:55 +0000)
committerelserj <elserj@localhost>
Wed, 16 Sep 2020 21:55:45 +0000 (21:55 +0000)
svn path=/; revision=680

interactome_scripts/find_species.pl

index 5a47541b0cf0c322e5bc00b81e1f3c0c3e8d7248..97d2e2eccbd270ac9c9cc15b24d734c2905e4157 100755 (executable)
@@ -1517,6 +1517,13 @@ sub trans_filter {
                                if ($gene =~ /t[2-9]$/) {$is_transcript = 0;}
                                elsif ($gene =~ /t1[0-9]$/) {$is_transcript = 0;}
                }
+               
+
+               # Salvia hispanica genes should all be counted
+               if($species eq "Salvia_hispanica") {
+                       $is_transcript = 1;
+               }
+
 return $is_transcript;
 }