# HG changeset patch # User recetox # Date 1713775239 0 # Node ID 402620029a7a16ca76458308ccbcb9afe48b2df0 # Parent 48ade5cc847f7b132f815e566a85de90913ccdc0 planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/matchms commit c626c8db7ba4dd30f85f7086e16e1e2413e36bd8 diff -r 48ade5cc847f -r 402620029a7a formatter.py --- a/formatter.py Tue Apr 16 11:25:14 2024 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,51 +0,0 @@ -import click -from matchms.importing import scores_from_json -from pandas import DataFrame - - -def scores_to_dataframe(scores): - """Unpack scores from matchms.scores into two dataframes of scores and matches. - - Args: - scores (matchms.scores): matchms.scores object. - - Returns: - DataFrame: Scores - DataFrame: Matches - """ - data = [] - - for i, (row, col) in enumerate(zip(scores.scores.row, scores.scores.col)): - data.append([scores.queries[col].metadata['compound_name'], scores.references[row].metadata['compound_name'], *scores.scores.data[i]]) - - dataframe = DataFrame(data, columns=['query', 'reference', *scores.scores.score_names]) - - return dataframe - - -def load_data(scores_filename: str) -> DataFrame: - """Load data from filenames and join on compound id. - - Args: - scores_filename (str): Path to json file with serialized scores. - - Returns: - DataFrame: Joined dataframe on compounds containing scores and matches in long format. - """ - scores = scores_from_json(scores_filename) - scores = scores_to_dataframe(scores) - - return scores - - -@click.group(invoke_without_command=True) -@click.option('--sf', 'scores_filename', type=click.Path(exists=True), required=True) -@click.option('--o', 'output_filename', type=click.Path(writable=True), required=True) -def cli(scores_filename, output_filename): - result = load_data(scores_filename) - result.to_csv(output_filename, sep="\t", index=False) - pass - - -if __name__ == '__main__': - cli() diff -r 48ade5cc847f -r 402620029a7a matchms_formatter.xml --- a/matchms_formatter.xml Tue Apr 16 11:25:14 2024 +0000 +++ b/matchms_formatter.xml Mon Apr 22 08:40:39 2024 +0000 @@ -1,4 +1,4 @@ - + reformat scores object of matchms to long format table @@ -13,12 +13,11 @@ matchms - click pandas @@ -29,15 +28,26 @@ - - python3 ${__tool_directory__}/formatter.py \ - --sf '$scores' \ - --o '$output' + +from matchms.importing import scores_from_json +from pandas import DataFrame + +scores = scores_from_json('$scores') +data = [] + +for i, (row, col) in enumerate(zip(scores.scores.row, scores.scores.col)): + data.append([scores.queries[col].metadata['$key'], scores.references[row].metadata['$key'], *scores.scores.data[i]]) + +result = DataFrame(data, columns=['query', 'reference', *scores.scores.score_names]) + +result.to_csv('$output', sep="\t", index=False) + + @@ -46,11 +56,13 @@ + +