diff libs/compare_and_change_two_fastq_id.py @ 10:53efef402c51 draft

planemo upload commit a4fb57231f274270afbfebd47f67df05babffa4a-dirty
author charles_s_test
date Wed, 29 Nov 2017 08:34:19 -0500
parents 3d6680af0bec
children
line wrap: on
line diff
--- a/libs/compare_and_change_two_fastq_id.py	Tue Nov 28 21:16:36 2017 -0500
+++ b/libs/compare_and_change_two_fastq_id.py	Wed Nov 29 08:34:19 2017 -0500
@@ -17,11 +17,11 @@
   if a_title==b_title:
     pass
   else:
-    print("changing the title of two seperated fastq files...")
-    print(a_title,b_title)
+    print "changing the title of two seperated fastq files..."
+    print a_title,b_title
     os.system("sed "+"-i 's/.1 / /g' "+file1)
-    print("finished file1")
+    print "finished file1"
     os.system("sed "+"-i 's/.2 / /g' "+file2)
-    print("finished file2")
+    print "finished file2"
 
 compare_and_change_two_fastq_id(file1,file2) 
\ No newline at end of file