Skip to content

Commit a881f3b

Browse files
authored
append --> concat (#160)
1 parent 077ee67 commit a881f3b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ImputationPipeline/ManualQCPRS/ManualQCPRS.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -274,8 +274,8 @@ def update_sample_sets_table_with_modified_results(self, path):
274274
print("Done")
275275

276276
def save_modified_batch_results(self):
277-
modified_batch_results = self.selected_batch_gui.modified_results.append(
278-
self.selected_batch_gui.failed_imputation_samples).fillna("NA")
277+
modified_batch_results = pd.concat([self.selected_batch_gui.modified_results,
278+
self.selected_batch_gui.failed_imputation_samples]).fillna("NA")
279279
now = datetime.now(self.eastern_tz).strftime("%Y-%m-%d_%H:%M:%S_%Z")
280280
path = os.path.join(self.workspace_bucket_name,
281281
"manually_qcd_prs_results",

0 commit comments

Comments
 (0)