Skip to content

Commit 82c29c2

Browse files
committed
Fixed key error when providing faststructure format in plot mode
1 parent ece2794 commit 82c29c2

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
### Bug fixes:
66
* Fixed issue when best K is 1
77
* Fixed missing population separators on static .svg plots when using --use-ind-labels
8+
* Fixed key error when providing faststructure format in plot mode
89

910
## Changes since v0.4.3:
1011

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def platform_detection(install_binaries=True):
5555

5656
# Set some variables (PKGBUILD inspired)
5757
DATA_FILES = platform_detection()
58-
VERSION = "1.0.1"
58+
VERSION = "1.0.2"
5959
URL = "https://github.com/StuntsPT/Structure_threader"
6060

6161

structure_threader/plotter/structplot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def __init__(self, kfile, fmt, get_indv=False):
9797
self.indv = []
9898

9999
parse_methods = {"structure": self._parse_structure,
100-
"fastStructure": self._parse_faststructure,
100+
"faststructure": self._parse_faststructure,
101101
"maverick": self._parse_maverick}
102102

103103
# Let the parsing begin

0 commit comments

Comments
 (0)