fixed cmd running script problem for logo plots

This commit is contained in:
Tanushree Tunstall 2021-06-24 12:12:36 +01:00
parent 552c5e77aa
commit ca2315523d
14 changed files with 206 additions and 748 deletions

View file

@ -22,9 +22,14 @@ source("plotting_data.R")
infile_params = "/home/tanu/git/Data/streptomycin/output/gid_comb_stab_struc_params.csv"
mcsm_comb_data = read.csv(infile_params, header = T)
pd_df = plotting_data(df = mcsm_comb_data, lig_dist_cutoff = 10)
pd_df = plotting_data(df = mcsm_comb_data
, ligand_dist_colname = 'ligand_distance'
, lig_dist_cutoff = 10)
my_df = pd_df[[1]]
my_df_u = pd_df[[2]]
my_df_u_lig = pd_df[[3]]
dup_muts = pd_df[[4]]
#===============================================================
########################################################################
# End of script
########################################################################