Carlos-Francisco Méndez-Cruz

Transform soft file in XML file

...@@ -88,7 +88,7 @@ if __name__ == "__main__": ...@@ -88,7 +88,7 @@ if __name__ == "__main__":
88 #print("\nSerie: {}\tSample: {}\tTag: {}\tContent: {}".format(serie, sample, tag, content.encode(encoding='utf-8', errors='replace'))) 88 #print("\nSerie: {}\tSample: {}\tTag: {}\tContent: {}".format(serie, sample, tag, content.encode(encoding='utf-8', errors='replace')))
89 if tag in hashGcs[serie][sample]: 89 if tag in hashGcs[serie][sample]:
90 if content in hashGcs[serie][sample][tag]: 90 if content in hashGcs[serie][sample][tag]:
91 - print("Duplicated content: {}".format(content.encode(encoding='utf-8', errors='replace'))) 91 + #print("Duplicated content: {}".format(content.encode(encoding='utf-8', errors='replace')))
92 pass # GC content already in hash 92 pass # GC content already in hash
93 else: 93 else:
94 print("New content: {}".format(content)) 94 print("New content: {}".format(content))
......