Hello!

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

Note that updates take place every 10 minutes, commits may not be seen immediately.
restructuring of the jaiswal lab svn repo
authorelserj <elserj@localhost>
Tue, 25 Oct 2011 22:14:52 +0000 (22:14 +0000)
committerelserj <elserj@localhost>
Tue, 25 Oct 2011 22:14:52 +0000 (22:14 +0000)
svn path=/; revision=196

Personnel/athreyab/.gitignore [new file with mode: 0644]
Personnel/elserj/.gitignore [new file with mode: 0644]
Personnel/foxsa/.gitignore [new file with mode: 0644]
Personnel/preecej/.gitignore [new file with mode: 0644]
Personnel/rajar/orypf.pl [new file with mode: 0644]
foxsa/test_file.txt [deleted file]
image_annotation/.gitignore [new file with mode: 0644]
interpro/.gitignore [new file with mode: 0644]
planteome/.gitignore [new file with mode: 0644]
rajar/orypf.pl [deleted file]

diff --git a/Personnel/athreyab/.gitignore b/Personnel/athreyab/.gitignore
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/Personnel/elserj/.gitignore b/Personnel/elserj/.gitignore
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/Personnel/foxsa/.gitignore b/Personnel/foxsa/.gitignore
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/Personnel/preecej/.gitignore b/Personnel/preecej/.gitignore
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/Personnel/rajar/orypf.pl b/Personnel/rajar/orypf.pl
new file mode 100644 (file)
index 0000000..04f1630
--- /dev/null
@@ -0,0 +1,55 @@
+#!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;
diff --git a/foxsa/test_file.txt b/foxsa/test_file.txt
deleted file mode 100644 (file)
index 407a957..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-test 1
-
-modified by sam fox - 13:23 - 10/25/11
\ No newline at end of file
diff --git a/image_annotation/.gitignore b/image_annotation/.gitignore
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/interpro/.gitignore b/interpro/.gitignore
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/planteome/.gitignore b/planteome/.gitignore
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/rajar/orypf.pl b/rajar/orypf.pl
deleted file mode 100644 (file)
index 75aaa44..0000000
+++ /dev/null
@@ -1,56 +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;
-