@@ -263,7 +263,7 @@ def _parse_faststructure(self):
263263 and number of clusters (k)
264264 """
265265
266- # Thanks FastStructure , this was really easy.
266+ # Thanks fastStructure , this was really easy.
267267 self .qvals = np .genfromtxt (self .file_path )
268268
269269 self .nind , self .k = self .qvals .shape
@@ -297,14 +297,14 @@ class PlotList:
297297 output file provided. The population information is stored in this class
298298 since it is the same for all PlotK objects. This class also contains
299299 plotting and array manipulation methods that are necessary to produce
300- the output plots
300+ the output plots.
301301 """
302302
303303 def __init__ (self , ouput_file_list , fmt , popfile = None , indfile = None ):
304304 """
305305 When a PlotList instance is created, a list of the output files and
306306 their format must be provided. Optionally, a population file may
307- also be provided for additional plot features
307+ also be provided for additional plot features.
308308
309309 :param ouput_file_list (list): Each element being the path to a
310310 structure/faststructure/maverick output file (presumably with
@@ -319,12 +319,12 @@ def __init__(self, ouput_file_list, fmt, popfile=None, indfile=None):
319319
320320 """
321321 Dictionary attribute that stores the K number
322- as key and the corresponding PlotK object as value
322+ as key and the corresponding PlotK object as value.
323323 """
324324 self .kvals = {}
325325
326326 """
327- Sets the maximum K value from the loaded PlotK objects
327+ Sets the maximum K value from the loaded PlotK objects.
328328 """
329329 self .max_k = 0
330330
0 commit comments