ssi-analysis-result-parsers 0.0.2__py3-none-any.whl → 0.0.4__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -65,6 +65,8 @@ def legionella_summary(legionella_sbt_results_tsv: Path, lag1_blast_tsv: Path) -
65
65
  results_dict = core.update_results_dict(
66
66
  sbt_results_dict, lag1_blast_dict, old_duplicate_key_prefix="SBT: "
67
67
  )
68
+ if results_dict is None:
69
+ return {}
68
70
  return results_dict
69
71
 
70
72
 
@@ -145,7 +147,6 @@ class LegionellaResults(core.PipelineResults):
145
147
  include_match_stats=False,
146
148
  gene_names=["lag-1"],
147
149
  )
148
- print(lag1_blast_dict)
149
150
  results_dict = core.update_results_dict(
150
151
  sbt_results_dict, lag1_blast_dict, old_duplicate_key_prefix="SBT: "
151
152
  )
@@ -1 +1 @@
1
- __version__ = "0.0.2"
1
+ __version__ = "0.0.3"
@@ -196,6 +196,7 @@ def get_samplesheet(sample_sheet_config: dict) -> pd.DataFrame:
196
196
  class PipelineResults:
197
197
 
198
198
  def __init__(self, results_dict):
199
+ print(results_dict)
199
200
  self.results_dict = results_dict
200
201
  self.results_df = pandas.DataFrame.from_dict(results_dict, orient="index")
201
202
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ssi_analysis_result_parsers
3
- Version: 0.0.2
3
+ Version: 0.0.4
4
4
  Summary: TODO
5
5
  Home-page: https://github.com/thej-ssi/ssi_analysis_result_parsers
6
6
  Author: Thor Bech Johannesen
@@ -1,13 +1,13 @@
1
- ssi_analysis_result_parsers/Legionella_parser.py,sha256=zBsSYfuUj2uN_LRqgTpOwhFUQF2jTLNvVzKbh6OPNxE,8878
2
- ssi_analysis_result_parsers/__init__.py,sha256=QvlVh4JTl3JL7jQAja76yKtT-IvF4631ASjWY1wS6AQ,22
1
+ ssi_analysis_result_parsers/Legionella_parser.py,sha256=CP5r1RriVd4zxeTBokLJYcu5iS6xbK3pBzI6xwITSm0,8894
2
+ ssi_analysis_result_parsers/__init__.py,sha256=4GZKi13lDTD25YBkGakhZyEQZWTER_OWQMNPoH_UM2c,22
3
3
  ssi_analysis_result_parsers/_modidx.py,sha256=JY_GM0tMojzTtX9O4D8as4k5a-sXqkxkb7ZUEPzhuMk,12232
4
4
  ssi_analysis_result_parsers/blast_parser.py,sha256=L7EdW2LUwSS2OQO7WZUAxP6whJXdvTILE2a3O59uv-s,7441
5
- ssi_analysis_result_parsers/core.py,sha256=HWnP0tjePcrmKu2yawcWrhWplTwWaY_9W5kSqB4h6mg,12096
5
+ ssi_analysis_result_parsers/core.py,sha256=6TGURv8spPdBpwKv6LvqvbVzJChdeHwsG3WQ6QLUuvE,12124
6
6
  ssi_analysis_result_parsers/hello_world.py,sha256=jpN94sqYuNHqUbUZMCJ35qGY5iLPB_emucgnDGDUk_U,1895
7
7
  ssi_analysis_result_parsers/some_string.py,sha256=JwmAXKbX_JgY8UGh4FAu5-7ZjezcAEhq4Q2B73pWp2M,923
8
8
  ssi_analysis_result_parsers/config/config.default.env,sha256=Zt6bfPbVV3rYCksoebX1ruAdFgeD9wqAnKDtswhtJJM,1390
9
9
  ssi_analysis_result_parsers/config/config.default.yaml,sha256=3qgUrUtQpxrzYv7WQaHsvz9dQB0RALKNU0idxv7oRqM,460
10
- ssi_analysis_result_parsers-0.0.2.dist-info/licenses/LICENSE,sha256=p6aTb6QIfqyZ2Uux2VjV4F2zthdUSHZOjB4mfwGc7fo,1094
10
+ ssi_analysis_result_parsers-0.0.4.dist-info/licenses/LICENSE,sha256=p6aTb6QIfqyZ2Uux2VjV4F2zthdUSHZOjB4mfwGc7fo,1094
11
11
  test_input/.DS_Store,sha256=sdTEvl9DTKPHNPYYjMqDepX7q7ZETlonk21tGEuWLao,6148
12
12
  test_input/Legionella/batch_parser_file_paths.tsv,sha256=zls11lmEA5U89d8RsX6PR8M1zXNVimeL4raqdZ3ijvQ,210
13
13
  test_input/Legionella/lag-1_blast.tsv,sha256=MN5QL_iBn9gQ8VTYEcTnT0JwKgpkD8G15-QFOrSWxkU,1133
@@ -20,8 +20,8 @@ test_input/blast_parser/gene_presence_absence_test.tsv,sha256=qCvMkBC-1GuXx83RDh
20
20
  test_output/output_with_sample_name.tsv,sha256=NQG7WaxczuWCCsX2a9MUxCCYpbuAirz9gw08OLdEdUo,41
21
21
  test_output/test.tsv,sha256=6DGzarXMkUP03Z58vZimc-gu1K2k84zxZLWWF2HROCg,277
22
22
  test_output/test_batch_output.tsv,sha256=6DGzarXMkUP03Z58vZimc-gu1K2k84zxZLWWF2HROCg,277
23
- ssi_analysis_result_parsers-0.0.2.dist-info/METADATA,sha256=ABKm6Jap4G1oUCuTy28c2_KcCiu4jj23prFHT_qrvcI,2765
24
- ssi_analysis_result_parsers-0.0.2.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
25
- ssi_analysis_result_parsers-0.0.2.dist-info/entry_points.txt,sha256=eG2NzlNDoG__0PPHl3eoKK5EXIz02BGhRX-L2aWgKCY,447
26
- ssi_analysis_result_parsers-0.0.2.dist-info/top_level.txt,sha256=3q56bBc2Wv2a6ZQ1l_9m66vot2-Qu6tM9tDr3QQ8auM,81
27
- ssi_analysis_result_parsers-0.0.2.dist-info/RECORD,,
23
+ ssi_analysis_result_parsers-0.0.4.dist-info/METADATA,sha256=r6IJQQ7JgRD_--UlM80lNMH5ZzlxYQCmvaVBIyPhF7k,2765
24
+ ssi_analysis_result_parsers-0.0.4.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
25
+ ssi_analysis_result_parsers-0.0.4.dist-info/entry_points.txt,sha256=eG2NzlNDoG__0PPHl3eoKK5EXIz02BGhRX-L2aWgKCY,447
26
+ ssi_analysis_result_parsers-0.0.4.dist-info/top_level.txt,sha256=3q56bBc2Wv2a6ZQ1l_9m66vot2-Qu6tM9tDr3QQ8auM,81
27
+ ssi_analysis_result_parsers-0.0.4.dist-info/RECORD,,