# HG changeset patch
# User holtgrewe
# Date 1368521542 14400
# Node ID 1a5ea7128b6a3a2df0f3a55c17912179b6f2a082
# Parent 529f702f943e585cd2ad5f5f3decd1a2282c3262
Uploaded
diff -r 529f702f943e -r 1a5ea7128b6a README
--- a/README Mon May 06 12:55:44 2013 -0400
+++ b/README Tue May 14 04:52:22 2013 -0400
@@ -1,8 +1,10 @@
Dependencies
============
- * ngsroi R package (shipped with tar.gz)
- * Python Cheetah package.
+ * ngsroi R package (shipped as tar.gz, in R subfolder)
+ * R packages: getopt
+ * samtools binary (apparently for SAM upload)
+ * Python packages: Cheetah, matplotlib
* ngs_roi binaries:
svn co http://svn.seqan.de/seqan/trunk seqan-trunk
diff -r 529f702f943e -r 1a5ea7128b6a bam2roi.xml
--- a/bam2roi.xml Mon May 06 12:55:44 2013 -0400
+++ b/bam2roi.xml Tue May 14 04:52:22 2013 -0400
@@ -56,4 +56,12 @@
Tool Help
-->
No help yet.
+
+
+
+ bam2roi
+ Cheetah
+
diff -r 529f702f943e -r 1a5ea7128b6a roi_details.xml
--- a/roi_details.xml Mon May 06 12:55:44 2013 -0400
+++ b/roi_details.xml Tue May 14 04:52:22 2013 -0400
@@ -62,4 +62,12 @@
Tool Help
-->
No help yet.
+
+
+
+ Cheetah
+ matplotlib
+
diff -r 529f702f943e -r 1a5ea7128b6a roi_feature_projection.xml
--- a/roi_feature_projection.xml Mon May 06 12:55:44 2013 -0400
+++ b/roi_feature_projection.xml Tue May 14 04:52:22 2013 -0400
@@ -10,7 +10,7 @@
#if $roi_intersect_in_features # ln -s ${roi_intersect_in_features} ${roi_intersect_in_features}.${roi_intersect_in_features.ext}; #end if
- roi_intersect $roi_intersect_strand_specific
+ roi_feature_projection $roi_intersect_strand_specific
--in-roi ${roi_intersect_in_roi}.${roi_intersect_in_roi.ext}
--in-features ${roi_intersect_in_features}.${roi_intersect_in_features.ext}
--out-roi ${roi_intersect_out_roi}.roi
@@ -76,4 +76,12 @@
Tool Help
-->
No help yet.
+
+
+
+ Cheetah
+ roi_feature_projection
+
diff -r 529f702f943e -r 1a5ea7128b6a roi_plot_thumbnails.xml
--- a/roi_plot_thumbnails.xml Mon May 06 12:55:44 2013 -0400
+++ b/roi_plot_thumbnails.xml Tue May 14 04:52:22 2013 -0400
@@ -75,4 +75,12 @@
You don't need help!
+
+
+
+ Cheetah
+ roi_plot_thumbnails
+
diff -r 529f702f943e -r 1a5ea7128b6a roi_report.xml
--- a/roi_report.xml Mon May 06 12:55:44 2013 -0400
+++ b/roi_report.xml Tue May 14 04:52:22 2013 -0400
@@ -33,4 +33,11 @@
Tool Help
-->
No help yet.
+
+
+ Cheetah
+ matplotlib
+
diff -r 529f702f943e -r 1a5ea7128b6a roi_table.py
--- a/roi_table.py Mon May 06 12:55:44 2013 -0400
+++ b/roi_table.py Tue May 14 04:52:22 2013 -0400
@@ -153,10 +153,11 @@
def createHtml(self, file_name, keys, records):
print >>sys.stderr, 'Writing %s' % self.args.out_file
- vals = {'table': RoiTable(self.args, keys, records, self).render()}
+ vals = {'table': RoiTable(self.args, keys, records, self).render(),
+ 'args': self.args}
t = Cheetah.Template.Template(PAGE_TPL, searchList=vals)
with open(self.args.out_file, 'wb') as f:
- f.write(str(t))
+ f.write(str(t))
def main():
diff -r 529f702f943e -r 1a5ea7128b6a roi_table.xml
--- a/roi_table.xml Mon May 06 12:55:44 2013 -0400
+++ b/roi_table.xml Tue May 14 04:52:22 2013 -0400
@@ -71,4 +71,12 @@
Tool Help
-->
No help yet.
+
+
+
+ Cheetah
+ roi_plot_thumbnails
+