fetchm2 0.1.2__tar.gz → 0.1.3__tar.gz

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.
Files changed (39) hide show
  1. {fetchm2-0.1.2/src/fetchm2.egg-info → fetchm2-0.1.3}/PKG-INFO +2 -2
  2. {fetchm2-0.1.2 → fetchm2-0.1.3}/README.md +1 -1
  3. {fetchm2-0.1.2 → fetchm2-0.1.3}/docs/VALIDATION_REPORT.md +11 -1
  4. {fetchm2-0.1.2 → fetchm2-0.1.3}/pyproject.toml +1 -1
  5. {fetchm2-0.1.2 → fetchm2-0.1.3}/src/fetchm2/__init__.py +1 -1
  6. {fetchm2-0.1.2 → fetchm2-0.1.3/src/fetchm2.egg-info}/PKG-INFO +2 -2
  7. {fetchm2-0.1.2 → fetchm2-0.1.3}/LICENSE +0 -0
  8. {fetchm2-0.1.2 → fetchm2-0.1.3}/MANIFEST.in +0 -0
  9. {fetchm2-0.1.2 → fetchm2-0.1.3}/docs/METADATA_ANALYSIS.md +0 -0
  10. {fetchm2-0.1.2 → fetchm2-0.1.3}/docs/RELEASE_CHECKLIST.md +0 -0
  11. {fetchm2-0.1.2 → fetchm2-0.1.3}/docs/SEQUENCE_DOWNLOAD.md +0 -0
  12. {fetchm2-0.1.2 → fetchm2-0.1.3}/docs/STANDARDIZATION.md +0 -0
  13. {fetchm2-0.1.2 → fetchm2-0.1.3}/environment.yml +0 -0
  14. {fetchm2-0.1.2 → fetchm2-0.1.3}/examples/offline_metadata.tsv +0 -0
  15. {fetchm2-0.1.2 → fetchm2-0.1.3}/examples/test_ncbi_dataset.tsv +0 -0
  16. {fetchm2-0.1.2 → fetchm2-0.1.3}/setup.cfg +0 -0
  17. {fetchm2-0.1.2 → fetchm2-0.1.3}/src/fetchm2/analysis.py +0 -0
  18. {fetchm2-0.1.2 → fetchm2-0.1.3}/src/fetchm2/audit.py +0 -0
  19. {fetchm2-0.1.2 → fetchm2-0.1.3}/src/fetchm2/cli.py +0 -0
  20. {fetchm2-0.1.2 → fetchm2-0.1.3}/src/fetchm2/data/__init__.py +0 -0
  21. {fetchm2-0.1.2 → fetchm2-0.1.3}/src/fetchm2/data/approved_broad_categories.csv +0 -0
  22. {fetchm2-0.1.2 → fetchm2-0.1.3}/src/fetchm2/data/collection_date_reviewed_rules.csv +0 -0
  23. {fetchm2-0.1.2 → fetchm2-0.1.3}/src/fetchm2/data/controlled_categories.csv +0 -0
  24. {fetchm2-0.1.2 → fetchm2-0.1.3}/src/fetchm2/data/country_mapping.json +0 -0
  25. {fetchm2-0.1.2 → fetchm2-0.1.3}/src/fetchm2/data/geography_reviewed_rules.csv +0 -0
  26. {fetchm2-0.1.2 → fetchm2-0.1.3}/src/fetchm2/data/host_negative_rules.csv +0 -0
  27. {fetchm2-0.1.2 → fetchm2-0.1.3}/src/fetchm2/data/host_synonyms.csv +0 -0
  28. {fetchm2-0.1.2 → fetchm2-0.1.3}/src/fetchm2/metadata.py +0 -0
  29. {fetchm2-0.1.2 → fetchm2-0.1.3}/src/fetchm2/sequence.py +0 -0
  30. {fetchm2-0.1.2 → fetchm2-0.1.3}/src/fetchm2/standardization.py +0 -0
  31. {fetchm2-0.1.2 → fetchm2-0.1.3}/src/fetchm2/utils.py +0 -0
  32. {fetchm2-0.1.2 → fetchm2-0.1.3}/src/fetchm2.egg-info/SOURCES.txt +0 -0
  33. {fetchm2-0.1.2 → fetchm2-0.1.3}/src/fetchm2.egg-info/dependency_links.txt +0 -0
  34. {fetchm2-0.1.2 → fetchm2-0.1.3}/src/fetchm2.egg-info/entry_points.txt +0 -0
  35. {fetchm2-0.1.2 → fetchm2-0.1.3}/src/fetchm2.egg-info/requires.txt +0 -0
  36. {fetchm2-0.1.2 → fetchm2-0.1.3}/src/fetchm2.egg-info/top_level.txt +0 -0
  37. {fetchm2-0.1.2 → fetchm2-0.1.3}/test.tsv +0 -0
  38. {fetchm2-0.1.2 → fetchm2-0.1.3}/tests/test_cli.py +0 -0
  39. {fetchm2-0.1.2 → fetchm2-0.1.3}/tests/test_standardization.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fetchm2
3
- Version: 0.1.2
3
+ Version: 0.1.3
4
4
  Summary: Standalone comprehensive genome metadata standardization and sequence download toolkit.
5
5
  Author-email: Tasnimul Arabi Anik <arabianik987@gmail.com>
6
6
  License-Expression: MIT
@@ -68,7 +68,7 @@ fetchm2 run --input ncbi_dataset.tsv --outdir results --download
68
68
  ```bash
69
69
  python -m venv fetchm2-env
70
70
  source fetchm2-env/bin/activate
71
- pip install fetchm2
71
+ pip install fetchm2==0.1.3
72
72
  ```
73
73
 
74
74
  Verify:
@@ -32,7 +32,7 @@ fetchm2 run --input ncbi_dataset.tsv --outdir results --download
32
32
  ```bash
33
33
  python -m venv fetchm2-env
34
34
  source fetchm2-env/bin/activate
35
- pip install fetchm2
35
+ pip install fetchm2==0.1.3
36
36
  ```
37
37
 
38
38
  Verify:
@@ -1,7 +1,7 @@
1
1
  # FetchM2 Validation Report
2
2
 
3
3
  Validation date: 2026-05-05
4
- Current validation target: `fetchm2 0.1.2`
4
+ Current validation target: `fetchm2 0.1.3`
5
5
 
6
6
  ## Source Baselines
7
7
 
@@ -234,3 +234,13 @@ Known scope notes for `0.1.2`:
234
234
  - host lineage is bundled for common hosts and optionally enriched with `taxonkit` when installed
235
235
  - embeddings/BGE are intentionally not used in production standardization
236
236
  - large-scale sequence download was not run during this validation to avoid unnecessary NCBI load
237
+
238
+ ## Additional 0.1.3 Documentation Validation
239
+
240
+ The 0.1.3 patch updates the README installation command to use the pinned current PyPI release:
241
+
242
+ ```bash
243
+ pip install fetchm2==0.1.3
244
+ ```
245
+
246
+ No runtime behavior changed from 0.1.2.
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "fetchm2"
7
- version = "0.1.2"
7
+ version = "0.1.3"
8
8
  description = "Standalone comprehensive genome metadata standardization and sequence download toolkit."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
@@ -2,4 +2,4 @@
2
2
 
3
3
  from __future__ import annotations
4
4
 
5
- __version__ = "0.1.2"
5
+ __version__ = "0.1.3"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fetchm2
3
- Version: 0.1.2
3
+ Version: 0.1.3
4
4
  Summary: Standalone comprehensive genome metadata standardization and sequence download toolkit.
5
5
  Author-email: Tasnimul Arabi Anik <arabianik987@gmail.com>
6
6
  License-Expression: MIT
@@ -68,7 +68,7 @@ fetchm2 run --input ncbi_dataset.tsv --outdir results --download
68
68
  ```bash
69
69
  python -m venv fetchm2-env
70
70
  source fetchm2-env/bin/activate
71
- pip install fetchm2
71
+ pip install fetchm2==0.1.3
72
72
  ```
73
73
 
74
74
  Verify:
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes