changeset 7:d35dcdd73a71 draft

Uploaded
author trinity_ctat
date Mon, 23 Apr 2018 16:18:59 -0400
parents 3165ba23fdbb
children 8b6cd90db3cd
files data_manager/add_ctat_centrifuge_index.py
diffstat 1 files changed, 6 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/data_manager/add_ctat_centrifuge_index.py	Mon Apr 23 16:11:15 2018 -0400
+++ b/data_manager/add_ctat_centrifuge_index.py	Mon Apr 23 16:18:59 2018 -0400
@@ -76,13 +76,12 @@
     print "\t" + "\n\t".join(filelist_parser.filenames)
     # Instead of sending back the list of found URL's, send back the one URL we want.
     # But the selection interface chokes on a single value, so send two of the same item.
-    # return tuple(filelist_parser.filenames)
-    vals=set()
-    vals.add(_CTAT_CentrifugeDownload_URL) 
-    print "The items in vals are:"
-    print "\t" + "\n\t".join(vals)
-    #,"Don't pick this one. Just for testing")
-    return tuple(vals)
+    # vals=set()
+    # vals.add(_CTAT_CentrifugeDownload_URL) 
+    # print "The items in vals are:"
+    # print "\t" + "\n\t".join(vals)
+    # return tuple(vals)
+    return tuple(filelist_parser.filenames)
 
 # The following was used by the example program to get input parameters through the json.
 # Just leaving here for reference.