Closed dsenalik closed 9 years ago
Documentation on the home page describes structure data input files, and states:
The first 6 columns of the file will be ignored;
This is incorrect, the first 7 columns are ignored. See parse_str.pyx line 8: loci = np.array([line.strip().split()[7:] for line in handle])
loci = np.array([line.strip().split()[7:] for line in handle])
Thanks for notifying! I've fixed this in the current release of fastStructure.
Documentation on the home page describes structure data input files, and states:
The first 6 columns of the file will be ignored;
This is incorrect, the first 7 columns are ignored. See parse_str.pyx line 8:
loci = np.array([line.strip().split()[7:] for line in handle])