# HG changeset patch # User fabio # Date 1524590951 14400 # Node ID 9ec4acef30eda20654791a8f9d8cccdbc340083b # Parent 4646e524cd43476035558b594adcab917d5b3ff5 Uploaded 20180424 diff -r 4646e524cd43 -r 9ec4acef30ed ._.shed.yml Binary file ._.shed.yml has changed diff -r 4646e524cd43 -r 9ec4acef30ed ._query.py Binary file ._query.py has changed diff -r 4646e524cd43 -r 9ec4acef30ed ._query.xml Binary file ._query.xml has changed diff -r 4646e524cd43 -r 9ec4acef30ed query.py --- a/query.py Sat Apr 14 07:34:04 2018 -0400 +++ b/query.py Tue Apr 24 13:29:11 2018 -0400 @@ -106,7 +106,7 @@ if is_sabutan: sorted_accessions = sorted(accessions_dict, key=lambda i: float(accessions_dict[i]["score"]), reverse=True); for acc in sorted_accessions: - accessions_list = accessions_list + str(acc) + "\t" + str(accessions_dict[acc]) + "\n"; + accessions_list = accessions_list + str(acc) + "\t" + str(accessions_dict[acc]["fraction"]) + "\t" + str(accessions_dict[acc]["score"]) + "\n"; with open(output_file_path, 'w') as out: out.write(accessions_list.strip()); return sys.exit(OK_EXIT_CODE);