We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ceb7c6e commit 90278cbCopy full SHA for 90278cb
PythonGUI_apps/PLQE_analysis/plqe_analysis.py
@@ -72,7 +72,7 @@ def open_data_file(self):
72
self.data = np.loadtxt(self.filename[0], delimiter = '\t', skiprows = 1)
73
elif ".csv" in self.filename[0]:
74
self.data = np.loadtxt(self.filename[0], delimiter = ',', skiprows = 1)
75
- elif ".qua" in self.filename[0]:
+ elif ".qua" in self.filename[0]:#TODO: Include a Pop-up window for input for skipping header
76
self.data = np.genfromtxt(self.filename[0], delimiter = '\t', skip_header = 28)
77
self.cs_window = ColSelectionWindow(self.data)
78
self.cs_window.col_selection_signal.connect(self.open_with_col_selection)
0 commit comments