clipkit 2.2.2__tar.gz → 2.2.4__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 (32) hide show
  1. {clipkit-2.2.2 → clipkit-2.2.4}/PKG-INFO +1 -1
  2. {clipkit-2.2.2 → clipkit-2.2.4}/clipkit/parser.py +5 -5
  3. clipkit-2.2.4/clipkit/settings.py +2 -0
  4. clipkit-2.2.4/clipkit/version.py +1 -0
  5. {clipkit-2.2.2 → clipkit-2.2.4}/clipkit.egg-info/PKG-INFO +1 -1
  6. clipkit-2.2.2/clipkit/settings.py +0 -2
  7. clipkit-2.2.2/clipkit/version.py +0 -1
  8. {clipkit-2.2.2 → clipkit-2.2.4}/LICENSE.md +0 -0
  9. {clipkit-2.2.2 → clipkit-2.2.4}/README.md +0 -0
  10. {clipkit-2.2.2 → clipkit-2.2.4}/clipkit/__init__.py +0 -0
  11. {clipkit-2.2.2 → clipkit-2.2.4}/clipkit/__main__.py +0 -0
  12. {clipkit-2.2.2 → clipkit-2.2.4}/clipkit/api.py +0 -0
  13. {clipkit-2.2.2 → clipkit-2.2.4}/clipkit/args_processing.py +0 -0
  14. {clipkit-2.2.2 → clipkit-2.2.4}/clipkit/clipkit.py +0 -0
  15. {clipkit-2.2.2 → clipkit-2.2.4}/clipkit/exceptions.py +0 -0
  16. {clipkit-2.2.2 → clipkit-2.2.4}/clipkit/files.py +0 -0
  17. {clipkit-2.2.2 → clipkit-2.2.4}/clipkit/helpers.py +0 -0
  18. {clipkit-2.2.2 → clipkit-2.2.4}/clipkit/logger.py +0 -0
  19. {clipkit-2.2.2 → clipkit-2.2.4}/clipkit/modes.py +0 -0
  20. {clipkit-2.2.2 → clipkit-2.2.4}/clipkit/msa.py +0 -0
  21. {clipkit-2.2.2 → clipkit-2.2.4}/clipkit/site_classification.py +0 -0
  22. {clipkit-2.2.2 → clipkit-2.2.4}/clipkit/smart_gap_helper.py +0 -0
  23. {clipkit-2.2.2 → clipkit-2.2.4}/clipkit/stats.py +0 -0
  24. {clipkit-2.2.2 → clipkit-2.2.4}/clipkit/warnings.py +0 -0
  25. {clipkit-2.2.2 → clipkit-2.2.4}/clipkit/write.py +0 -0
  26. {clipkit-2.2.2 → clipkit-2.2.4}/clipkit.egg-info/SOURCES.txt +0 -0
  27. {clipkit-2.2.2 → clipkit-2.2.4}/clipkit.egg-info/dependency_links.txt +0 -0
  28. {clipkit-2.2.2 → clipkit-2.2.4}/clipkit.egg-info/entry_points.txt +0 -0
  29. {clipkit-2.2.2 → clipkit-2.2.4}/clipkit.egg-info/requires.txt +0 -0
  30. {clipkit-2.2.2 → clipkit-2.2.4}/clipkit.egg-info/top_level.txt +0 -0
  31. {clipkit-2.2.2 → clipkit-2.2.4}/setup.cfg +0 -0
  32. {clipkit-2.2.2 → clipkit-2.2.4}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: clipkit
3
- Version: 2.2.2
3
+ Version: 2.2.4
4
4
  Summary: Alignment trimming software for phylogenetics.
5
5
  Home-page: https://github.com/jlsteenwyk/clipkit
6
6
  Author: Jacob L. Steenwyk
@@ -80,8 +80,8 @@ def create_parser() -> ArgumentParser:
80
80
  (default: 0.9)
81
81
 
82
82
  -gc, --gap_characters <string_of_gap_chars> specifies gap characters used in input file
83
- (default for aa: "-?*XxNn"
84
- default for nt: "-?*Xx")
83
+ (default for aa: Xx-?*
84
+ default for nt: XxNn-?*)
85
85
 
86
86
  -if, --input_file_format <file_format> specifies input file format
87
87
  (default: auto-detect)
@@ -126,10 +126,10 @@ def create_parser() -> ArgumentParser:
126
126
  iteration of trimming that uses smart-gap.
127
127
 
128
128
  Gap characters
129
- Specifies gap characters used in the input file. All gap characters
130
- should have a quotes (single or double) surrounding them. For example,
129
+ Specifies gap characters used in the input file. For example,
131
130
  "NnXx-?" would specify that "N", "n", "X", "x", "-", and "?" are
132
- gap characters.
131
+ gap characters. Note, the first gap character cannot be "-" because
132
+ the parser will interpret the gaps list as a new argument.
133
133
 
134
134
  Sequence type
135
135
  Specifies the type of sequences in the input file. Valid options
@@ -0,0 +1,2 @@
1
+ DEFAULT_AA_GAP_CHARS = ["-", "?", "*", "X", "x"]
2
+ DEFAULT_NT_GAP_CHARS = ["-", "?", "*", "X", "x", "N", "n"]
@@ -0,0 +1 @@
1
+ __version__ = "2.2.4"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: clipkit
3
- Version: 2.2.2
3
+ Version: 2.2.4
4
4
  Summary: Alignment trimming software for phylogenetics.
5
5
  Home-page: https://github.com/jlsteenwyk/clipkit
6
6
  Author: Jacob L. Steenwyk
@@ -1,2 +0,0 @@
1
- DEFAULT_AA_GAP_CHARS = ["-", "?", "*"]
2
- DEFAULT_NT_GAP_CHARS = ["-", "?", "*", "X", "x"]
@@ -1 +0,0 @@
1
- __version__ = "2.2.2"
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
File without changes
File without changes
File without changes
File without changes