outputting revised all params file

This commit is contained in:
Tanushree Tunstall 2020-09-08 17:52:45 +01:00
parent f7ab799f74
commit e980085294

View file

@ -487,7 +487,7 @@ all_cols = combined_df_all.columns
first_cols = ['mutationinformation','mutation', 'wild_type', 'position', 'mutant_type'] first_cols = ['mutationinformation','mutation', 'wild_type', 'position', 'mutant_type']
last_cols = [col for col in combined_df_all.columns if col not in first_cols] last_cols = [col for col in combined_df_all.columns if col not in first_cols]
df = combined_df_all[first_cols+last_cols] combined_df_all = combined_df_all[first_cols+last_cols]
#%% IMPORTANT: check if mutation related info is all populated after this merge #%% IMPORTANT: check if mutation related info is all populated after this merge
# select string colnames to ensure no NA exist there # select string colnames to ensure no NA exist there