Skip to content

Commit

Permalink
fix for #210 - removing y point in parameter set up reflected in fast…
Browse files Browse the repository at this point in the history
…a popup
  • Loading branch information
skinnersp committed Apr 5, 2018
1 parent 9ac08c5 commit 474b4d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 1 addition & 2 deletions gui/components/PeakListArea.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,6 @@ def update_tree(self):
return

self.peak_list_objects = []
self.fasta_files = {}
self.peak_list_dict = {}
self.show()
self.side_bar().refresh_sidebar()
Expand Down Expand Up @@ -226,7 +225,6 @@ def update_tree(self):

for j, y in enumerate(y_conds):
self.peak_list_dict[z][y] = {}
self.fasta_files[y] = ''
x_markers = []

for k, x in enumerate(x_conds):
Expand Down Expand Up @@ -310,6 +308,7 @@ def update_tree(self):

self.updateClicks += 1
self.variables["experimental_dataset"] = self.peak_list_dict


def add_connecting_line(self, atom1, atom2):

Expand Down
1 change: 1 addition & 0 deletions gui/popups/FastaSelectionPopup.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ def __init__(self, parent=None, **kw):
self.layout().addWidget(self.buttonBox)

def get_values(self):
print(self.fasta_files)
if self.fasta_files:
for cond_name, fasta_path in self.fasta_files.items():
self.add_field(cond_name, fasta_path)
Expand Down

0 comments on commit 474b4d6

Please sign in to comment.