Hello!

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

Note that updates take place every 10 minutes, commits may not be seen immediately.
removed one file
authorrajar <rajar@localhost>
Wed, 2 Nov 2011 21:46:59 +0000 (21:46 +0000)
committerrajar <rajar@localhost>
Wed, 2 Nov 2011 21:46:59 +0000 (21:46 +0000)
svn path=/; revision=211

Personnel/rajar/.gitignore [new file with mode: 0644]
Personnel/rajar/orypf.pl [deleted file]

diff --git a/Personnel/rajar/.gitignore b/Personnel/rajar/.gitignore
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/Personnel/rajar/orypf.pl b/Personnel/rajar/orypf.pl
deleted file mode 100644 (file)
index 04f1630..0000000
+++ /dev/null
@@ -1,55 +0,0 @@
-#!usr/bin/perl
-#This program is written by Rajani Raja
-#This is a program to get .pf file used in strawberrycyc
-#===========================================================================
-# Enable Perl warnings
-#use strict;
-#use warnings;
-#use Array::Unique;
-
-#Load libraries
-
-
-
-$f2 = "ORY_PF.txt";
-open(FH2,$f2) || die ("could not open file!");
-@final =<FH2>;
-close FH2;
-$finalcnt =@final;
-print $finalcnt;
-print "\n";
-open(FH,">>orypf.txt");
-for($i=0;$i<$finalcnt;$i++)
-{
-
-if(@final[$i] =~ m/ID/)
-{
-#print FH "//";
-print FH @final[$i];
-#print FH "\t";
-}
-elsif(@final[$i] =~ m/FUNCTION/)
-{
-print FH @final[$i];
-#print FH "\t";
-}
-elsif(@final[$i] =~ m/EC/)
-{
-print FH @final[$i];
-#print FH "\t";
-
-}
-elsif(@final[$i] =~ m/SYNONYM/)
-{
-print FH @final[$i];
-#print FH "\t";
-}
-
-}
-
-close FH;
-
-$final2cnt =@final2;
-print $finalcnt;
-print "\n";
-#print $final2cnt;