Mercurial > repos > recetox > matchms
diff matchms_wrapper.py @ 5:672c22d7f004 draft
"planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/matchms commit e4fdeb4c24f993c7f1a9ce851b9739ce9c0ff8e2"
author | recetox |
---|---|
date | Wed, 21 Jul 2021 07:43:45 +0000 |
parents | 57959596262d |
children | 4571641de47a |
line wrap: on
line diff
--- a/matchms_wrapper.py Tue Jun 08 11:28:40 2021 +0000 +++ b/matchms_wrapper.py Wed Jul 21 07:43:45 2021 +0000 @@ -58,11 +58,11 @@ # Write scores to dataframe dataframe_scores = DataFrame(data=[entry["score"] for entry in scores.scores], index=reference_names, columns=query_names) - dataframe_scores.to_csv(args.output_filename_scores, sep=';') + dataframe_scores.to_csv(args.output_filename_scores, sep='\t') # Write number of matches to dataframe dataframe_matches = DataFrame(data=[entry["matches"] for entry in scores.scores], index=reference_names, columns=query_names) - dataframe_matches.to_csv(args.output_filename_matches, sep=';') + dataframe_matches.to_csv(args.output_filename_matches, sep='\t') return 0