diff --git a/README.md b/README.md
index d7d5337805d0fa1104c2853df913ab0724eb7665..87aff75424dda4bbef57863f6bd8a5b4fa42bcce 100644
--- a/README.md
+++ b/README.md
@@ -1,25 +1,27 @@
 Workflow for generating phenotype score combinations and correlating them to biofilm. 
 
-There is one rule: no Excel. 
+There is one rule: no Excel. Every time I use excel, I have to rename the file and they get lost and I can't retrace my steps. Forcing no excel, I can see every step and fix them where I need to. 
 
 First things first: 
 
 1. Generate normalized scores from the sorted scores. 
 	* A sorted score is a the average of the raw scores from the biological replicates. An individual photo is a biological replicate. 
 
-	`score_wrangler.R` takes in the un-normalized scores and generates a normalized column using the `preProcess()` function from the `caret` package. 
+	* `score_wrangler.R` takes in the un-normalized scores and generates a normalized column using the `preProcess()` function from the `caret` package. 
+	
+	* This program will also remove data that we do not want (we removed certain non-albicans *Candida* species that didn't grow under certain conditions. 
 
-	This program will also remove data that we do not want (we removed certain non-albicans *Candida* species that didn't grow under certain conditions. 
+	* After this, the files are modified with `column_clean.py` (called inside the R script) to remove the leading column and to clean up the column content if necessary. 
 
-	After this, the files are modified with `column_clean.py` to remove the leading column and to clean up the column content if necessary. 
+	* Finally, the program makes a file with all the score data in it. Repeatability. No Excel. 
 
-	Make a file with all the scores in it. 
+	* I also had it combine all the scores. That just made things a lot easier. 
 
 2. Add normalized scores in different combinations.
 	* Adhesion, filamentation, and invasion scores need to be summed together in all combinations of pairs and once all together for *each* condition. 
 	* There are 6 conditions (3 different media and 2 temperatures, which don't match across the biofilm assays).
 
-
+	Using the `cor.test()` function described by [STHDA](http://www.sthda.com/english/wiki/correlation-test-between-two-variables-in-r)
 
 3. Correlate all the normalized sum scores with biofilm.  
 	* I need a table for these that include the information on what scores are included in the composite scores, the media, and the temperature, as well as the correlation metrics. 
diff --git a/additive_correlations.csv b/additive_correlations.csv
new file mode 100644
index 0000000000000000000000000000000000000000..7b5a69783fcd7078f7c572c6148c80396dc2b989
--- /dev/null
+++ b/additive_correlations.csv
@@ -0,0 +1,7 @@
+"Media","Temperature(°C)","Adhesion Pearson Statistic","Adhesion P-value","Filamentation Pearson Statistic","Filamentation P-value","Invasion Pearson Statistic","Invasion P-value","Adh. + Fil. Pearson Statistic","Adh. + Fil. P-value","Adh. + Inv. Pearson Statistic","Adh. + Inv. P-value","Fil. + Inv. Pearson Statistic","Fil. + Inv. P-value","Adh. + Fil. + Inv. Pearson Statistic","Adh. + Fil. + Inv. P-value"
+"LEE","30","-1.25016287101517","0.224992461286585","-0.207243834094401","0.837815880814208","-0.706141723587309","0.487860936567474","-1.01955033214067","0.319544593487795","-1.00860222054796","0.324646373820887","-0.718953443190146","0.480093974695464","-1.06860049184066","0.297380018574805"
+"LEE","37","2.45954085389506","0.0226704726604204","0.480277032992017","0.635995473365843","2.51115659055467","0.0202830422795272","1.85119392146459","0.0782577186354199","2.87852323322219","0.00899114701841621","1.93346734137877","0.0667725169091707","2.52329342970287","0.0197568540413681"
+"SPI","30","-0.516940171399622","0.610599801630142","-1.49645753678255","0.149413542849774","-0.867243634891197","0.395610433603792","-1.06936374854033","0.297044038550212","-0.76134349614126","0.454917296954279","-1.24973644633469","0.225145145329053","-1.05146543939314","0.304994525896292"
+"SPI","37","2.05011972367224","0.0530443851695684","0.566624643850994","0.576975754476763","2.43912710706865","0.0236850076580968","1.48087892979267","0.153487620828728","2.6285717593594","0.0157003241550514","1.83046253248039","0.0814110075732709","2.14262553510982","0.0440164751028548"
+"YPD","30","-1.10030182522826","0.283654024886279","1.28314352316422","0.213422503084265","1.16094353017772","0.258692214127873","0.0768972727468174","0.939433203222128","-0.0161548158873173","0.987263383826116","1.37355922449991","0.184065757202811","0.708750323800643","0.486273626156987"
+"YPD","37","-2.09862136324188","0.0481221781344565","-1.24779631599426","0.225840823438716","0.175862236935268","0.862086966608244","-2.85524081355217","0.00947636153292339","-1.2398243569074","0.228716631262432","-0.671956918543493","0.5089369791254","-1.94280674405923","0.065567621722181"
diff --git a/additive_correlator.R b/additive_correlator.R
new file mode 100644
index 0000000000000000000000000000000000000000..30dc21ce3d11963f347806a17376b8ba4c19b1ab
--- /dev/null
+++ b/additive_correlator.R
@@ -0,0 +1,37 @@
+# Reference: http://www.sthda.com/english/wiki/correlation-test-between-two-variables-in-r
+
+media = c( "LEE", "SPI", "YPD" )
+temps = c( "30", "37" )
+
+data <- as.data.frame(read.csv( "compiled_and_combination_scores_data.csv" ))
+new_file_name <- "additive_correlations.csv"
+header = c("Media", "Temperature(°C)", "Adhesion Pearson Statistic", "Adhesion P-value", "Filamentation Pearson Statistic", "Filamentation P-value", "Invasion Pearson Statistic", "Invasion P-value",	"Adh. + Fil. Pearson Statistic", "Adh. + Fil. P-value", "Adh. + Inv. Pearson Statistic", "Adh. + Inv. P-value",	"Fil. + Inv. Pearson Statistic", "Fil. + Inv. P-value", "Adh. + Fil. + Inv. Pearson Statistic", "Adh. + Fil. + Inv. P-value")
+
+write.table( t(header), new_file_name, sep = ",", col.names = FALSE, row.names = FALSE, append = FALSE )
+
+for ( medium in media ){
+
+	med_data <- data[ data$Media == medium, ]
+
+	for ( temp in temps ){
+		
+		d <- med_data[ (med_data$Temperature...C. == temp), ]
+
+		biofilm <- d$Biofilm.norm
+
+		adh.corr <- cor.test(d$Adhesion.norm, d$Biofilm.norm, method = c("pearson"))
+		fil.corr <- cor.test(d$Filamentation.norm, d$Biofilm.norm, method = c("pearson"))
+		inv.corr <- cor.test(d$Invasion.norm, d$Biofilm.norm, method = c("pearson"))
+		adh_fil.corr <- cor.test(d$adh_fil, d$Biofilm.norm, method = c("pearson"))
+		adh_inv.corr <- cor.test(d$adh_inv, d$Biofilm.norm, method = c("pearson"))
+		fil_inv.corr <- cor.test(d$fil_inv, d$Biofilm.norm, method = c("pearson"))
+		all_sum.corr <- cor.test(d$all_sum, d$Biofilm.norm, method = c("pearson"))
+
+		line <- c( adh.corr$statistic, adh.corr$p.value, fil.corr$statistic, fil.corr$p.value, inv.corr$statistic, inv.corr$p.value, adh_fil.corr$statistic, adh_fil.corr$p.value, adh_inv.corr$statistic, adh_inv.corr$p.value, fil_inv.corr$statistic, fil_inv.corr$p.value, all_sum.corr$statistic, all_sum.corr$p.value)
+
+		printable <- c(medium, temp, line)
+		write.table( t(printable), new_file_name, sep = ",", col.names = !file.exists(new_file_name), row.names = FALSE, append = TRUE )
+
+	}
+
+}
\ No newline at end of file
diff --git a/compiled_and_combination_scores_data.csv b/compiled_and_combination_scores_data.csv
new file mode 100644
index 0000000000000000000000000000000000000000..d197599c9c087e5a5198c5b2d07af7069105d001
--- /dev/null
+++ b/compiled_and_combination_scores_data.csv
@@ -0,0 +1,139 @@
+"May.Strain","Species","Soll.Clade","Isolation.Site","MTL.Genotype","Media","Temperature...C.","Adhesion","Adhesion.stdev","Adhesion.norm","Filamentation","Filamentation.stdev","Filamentation.norm","Invasion","Invasion.stdev","Invasion.norm","Biofilm","Biofilm.stdev","Biofilm.norm","adh_fil","adh_inv","fil_inv","all_sum"
+"12C","Candida albicans","I","Oral cavity","a/a","LEE",30,0.36248,0.08383,0.370045797093798,-0.06476,0.03731,0.836297385839406,0.03017,0.02379,0.0169558484245125,0.095333333,0.020572365,0.313043477483122,1.2063431829332,0.38700164551831,0.853253234263919,1.22329903135772
+"19F","Candida albicans","I","Vagina","α/α","LEE",30,0.20222,0.07498,0.158534492998456,-0.05067,0.04932,0.883399077355085,0.03439,0.02654,0.0236244113650011,0.116333333,0.03058322,0.469565216224683,1.04193357035354,0.182158904363457,0.907023488720086,1.06555798171854
+"529L","Candida albicans","529L","Oral cavity","a/α","LEE",30,0.14239,0.04004,0.0795708007232509,-0.04269,0.05638,0.910075549909741,0.05383,0.01336,0.0543440472804273,0.172138889,0.029546325,0.885507247489423,0.989646350632992,0.133914848003678,0.964419597190168,1.04399039791342
+"GC75","Candida albicans","SA","Oral cavity","a/α","LEE",30,0.27783,0.07567,0.258324644643588,-0.31493,0.21307,0,0.01944,0.0217,0,0.142,0.022211108,0.660869566059951,0.258324644643588,0.258324644643588,0,0.258324644643588
+"L26","Candida albicans","I","Vagina","a/a","LEE",30,0.15783,0.04631,0.0999485277620135,-0.22853,0.31397,0.288827973524102,0.04132,0.03107,0.034575392686704,0.092666667,0.021644219,0.293167706103931,0.388776501286116,0.134523920448717,0.323403366210806,0.42335189397282
+"P34048","Candida albicans","III","Bloodstream","a/α","LEE",30,0.20847,0.09517,0.166783249086038,-0.16624,0.23785,0.497058233602995,0.12871,0.08287,0.172671533769476,0.1875,0.013313527,1,0.663841482689033,0.339454782855514,0.669729767372471,0.836513016458509
+"P37005","Candida albicans","I","Oral cavity","a/a","LEE",30,0.16258,0.10694,0.106217582388576,-0.16304,0.27971,0.50775556595574,0.03373,0.00964,0.0225814607629342,0.094333333,0.013421583,0.305590061352571,0.613973148344316,0.12879904315151,0.530337026718674,0.63655460910725
+"P37037","Candida albicans","I","Oral cavity","a/α","LEE",30,0.27102,0.09674,0.249336800010558,-0.05264,0.04589,0.876813532125426,0.11554,0.07896,0.151859928573686,0.102166667,0.004633813,0.363975159344161,1.12615033213598,0.401196728584244,1.02867346069911,1.27801026070967
+"P37039","Candida albicans","I","Bloodstream","a/α","LEE",30,0.15387,0.05458,0.0947221159049215,-0.1054,0.24658,0.700441264959551,0.03725,0.03364,0.0281438639739578,0.08,0.014302292,0.198757765965819,0.795163380864472,0.122865979878879,0.728585128933509,0.82330724483843
+"P57055","Candida albicans","III","Bloodstream","a/α","LEE",30,0.16213,0.08544,0.10562367195027,-0.17594,0.29585,0.464631944908738,0.0569,0.07746,0.0591953478082235,0.122666667,0.01060922,0.516770190020447,0.570255616859008,0.164819019758494,0.523827292716961,0.629450964667231
+"P57072","Candida albicans","II","Bloodstream","α/α","LEE",30,0.35111,0.24671,0.355039660019269,-0.13332,0.18254,0.607107040181855,0.44449,0.39881,0.671675990012958,0.142833333,0.03977611,0.667080743684271,0.962146700201124,1.02671565003223,1.27878303019481,1.63382269021408
+"P60002","Candida albicans","SA","Bloodstream","a/a","LEE",30,0.19862,0.06585,0.153783209492009,-0.09317,0.05835,0.741325132045196,0.09966,0.06991,0.126765904996682,0.130333333,0.023534844,0.57391304205239,0.895108341537205,0.280549114488691,0.868091037041878,1.02187424653389
+"P75010","Candida albicans","E","Bloodstream","a/α","LEE",30,0.19022,0.08123,0.142696881310298,-0.1089,0.0466,0.688741057698736,0.03134,0.03519,0.0188047154009039,0.100833333,0.028121265,0.35403726620115,0.831437939009034,0.161501596711202,0.70754577309964,0.850242654409938
+"P75016","Candida albicans","SA","Bloodstream","a/α","LEE",30,0.24446,0.0934,0.21428288614077,-0.13913,0.0915,0.587684696128903,0.10313,0.09568,0.132249296798458,0.134166667,0.013973189,0.602484475521778,0.801967582269673,0.346532182939228,0.719933992927361,0.934216879068131
+"P75063","Candida albicans","SA","Bloodstream","α/-","LEE",30,0.19594,0.04269,0.150246142881653,-0.02053,0.06719,0.984154576452497,0.02739,0.01476,0.0125628140703518,0.097833333,0.028726681,0.331677017809498,1.13440071933415,0.162808956952005,0.996717390522849,1.1469635334045
+"P76055","Candida albicans","II","Bloodstream","a/α","LEE",30,0.34747,0.09295,0.350235584473861,-0.01579,0.06096,1,0.03073,0.01629,0.0178407762080845,0.099166667,0.022549329,0.34161491095251,1.35023558447386,0.368076360681945,1.01784077620808,1.36807636068195
+"P76067","Candida albicans","II","Bloodstream","a/α","LEE",30,0.0821,0.06991,0,-0.0773,0.08447,0.794377214682089,0.07189,0.06605,0.0828829683006226,0.0745,0.026060293,0.157763977247791,0.794377214682089,0.0828829683006226,0.877260182982712,0.877260182982712
+"P78042","Candida albicans","III","Bloodstream","a/α","LEE",30,0.21441,0.10532,0.174622866871676,-0.04696,0.05182,0.895801297051548,0.02737,0.01663,0.0125312095066528,0.1085,0.025751483,0.411180125686509,1.07042416392322,0.187154076378329,0.908332506558201,1.08295537342988
+"P78048","Candida albicans","I","Bloodstream","α/α","LEE",30,0.18085,0.06654,0.130330346183795,-0.11905,0.1773,0.654810456642375,0.06622,0.04975,0.0739230744919566,0.130666667,0.009546669,0.576397519064851,0.78514080282617,0.204253420675752,0.728733531134332,0.859063877318127
+"P87","Candida albicans","SA","Oral cavity","a/a","LEE",30,0.19858,0.1002,0.153730417453048,-0.14681,0.2141,0.562011098482316,0.07561,0.05809,0.0887614171486363,0.1075,0.013503086,0.403726709555958,0.715741515935364,0.242491834601684,0.650772515630952,0.804502933084
+"P94015","Candida albicans","I","Bloodstream","a/a","LEE",30,0.83979,0.204,1,-0.19668,0.28129,0.395299859597513,0.65226,0.17962,1,0.053333333,0.006497863,0,1.39529985959751,2,1.39529985959751,2.39529985959751
+"SC5314","Candida albicans","I","Bloodstream","a/α","LEE",30,0.28561,0.14838,0.26859269622141,-0.05053,0.07442,0.883867085645517,0.22276,0.27017,0.321291994564015,0.136166667,0.015614274,0.617391307782879,1.15245978186693,0.589884690785425,1.20515908020953,1.47375177643094
+"WO-1","Candida albicans","WO-1","Bloodstream","α/α","LEE",30,0.08918,0.03007,0.00934419089601287,-0.15025,0.29778,0.550511466203116,0.15672,0.08168,0.216933725229923,0.085166667,0.022086321,0.237267085124802,0.559855657099129,0.226277916125936,0.767445191433039,0.776789382329052
+"12C","Candida albicans","I","Oral cavity","a/a","LEE",37,0.18537,0.1138,0.163377244386105,-0.39408,0.28885,0.234671065483038,0.02423,0.00701,0.0155720693579701,0.070166667,0.007717225,0.3673647486911,0.398048309869143,0.178949313744075,0.250243134841008,0.413620379227113
+"19F","Candida albicans","I","Vagina","α/α","LEE",37,0.17677,0.12387,0.153298016970606,-0.17988,0.16428,0.699585440496603,0.02622,0.01135,0.0182365936935128,0.0315,0.035251478,0.164921465968586,0.852883457467209,0.171534610664119,0.717822034190116,0.871120051160722
+"529L","Candida albicans","529L","Oral cavity","a/α","LEE",37,0.34866,0.0487,0.354753644929914,-0.11282,0.07591,0.845137065092353,0.57439,0.07495,0.752212626364062,0.029566667,0.004127953,0.154799303664921,1.19989071002227,1.10696627129398,1.59734969145642,1.95210333638633
+"GC75","Candida albicans","SA","Oral cavity","a/α","LEE",37,0.07013,0.03555,0.0283155970184239,-0.21664,0.17035,0.619799014607254,0.01601,0.00518,0.00456584320814086,0.036,0.019735051,0.18848167539267,0.648114611625678,0.0328814402265648,0.624364857815395,0.652680454833819
+"L26","Candida albicans","I","Vagina","a/a","LEE",37,0.08209,0.06228,0.042332755145094,-0.5022,0.33951,0,0.02827,0.02458,0.0209814554462074,0.0385,0.010011105,0.201570680628272,0.042332755145094,0.0633142105913014,0.0209814554462074,0.0633142105913014
+"P34048","Candida albicans","III","Bloodstream","a/α","LEE",37,0.1497,0.09202,0.121571890675543,-0.32043,0.29769,0.394526078180279,0.07229,0.05725,0.079922340496753,0.067833333,0.009994443,0.355148340314136,0.516097968855822,0.201494231172296,0.474448418677032,0.596020309352575
+"P37005","Candida albicans","I","Oral cavity","a/a","LEE",37,0.08141,0.05043,0.0415357929773569,-0.04147,0.06316,1,0.0564,0.03103,0.0586463145209881,0.043,0.009788031,0.225130890052356,1.04153579297736,0.100182107498345,1.05864631452099,1.10018210749835
+"P37037","Candida albicans","I","Oral cavity","a/α","LEE",37,0.53765,0.26423,0.576250527401434,-0.10374,0.17248,0.864844920018232,0.06598,0.04234,0.0714735221262636,0.116166667,0.089786166,0.608202445026178,1.44109544741967,0.647724049527698,0.936318442144496,1.51256896954593
+"P37039","Candida albicans","I","Bloodstream","a/α","LEE",37,0.07777,0.04405,0.0372697013735877,-0.12441,0.18773,0.819981333970004,0.0276,0.01308,0.0200843542880096,0.032666667,0.007371115,0.171029670157068,0.857251035343592,0.0573540556615973,0.840065688258014,0.877335389631601
+"P57055","Candida albicans","III","Bloodstream","a/α","LEE",37,0.06537,0.04399,0.0227368618442642,-0.08861,0.09721,0.897684109999349,0.03484,0.03939,0.0297784026243556,0.0255,0.008205689,0.133507853403141,0.920420971843613,0.0525152644686198,0.927462512623705,0.950199374467969
+"P57072","Candida albicans","II","Bloodstream","α/α","LEE",37,0.15601,0.08742,0.128967230790868,-0.31759,0.28587,0.400690209016127,0.33402,0.29798,0.43036754368347,0.093166667,0.01338739,0.487783596858639,0.529657439806995,0.559334774474338,0.831057752699597,0.960024983490465
+"P60002","Candida albicans","SA","Bloodstream","a/a","LEE",37,0.10746,0.05922,0.0720664760208148,-0.10337,0.06428,0.865647993401775,0.02358,0.01553,0.0147017473388231,0.093,0.056799844,0.486910994764398,0.93771446942259,0.0867682233596379,0.880349740740598,0.952416216761413
+"P75010","Candida albicans","E","Bloodstream","a/α","LEE",37,0.08306,0.05679,0.0434695982373072,-0.1244,0.0879,0.820003038656046,0.01523,0.0136,0.00352145678516436,0.0405,0.009616248,0.212041884816754,0.863472636893353,0.0469910550224716,0.82352449544121,0.866994093678518
+"P75016","Candida albicans","SA","Bloodstream","a/α","LEE",37,0.07666,0.03864,0.0359687778350757,-0.07304,0.05621,0.931478306166301,0.10527,0.10065,0.124081140791324,0.054166667,0.025584826,0.283595115183246,0.967447084001377,0.1600499186264,1.05555944695763,1.0915282247927
+"P75063","Candida albicans","SA","Bloodstream","α/-","LEE",37,0.124,0.0676,0.0914514087478318,-0.26416,0.31946,0.516658346537017,0.03378,0.02604,0.0283591082546696,0.031333333,0.010563301,0.164048863874346,0.608109755284849,0.119810517002501,0.545017454791687,0.636468863539518
+"P76055","Candida albicans","II","Bloodstream","a/α","LEE",37,0.09882,0.05762,0.0619403684778023,-0.19203,0.11517,0.673214246955918,0.0126,0.00517,0,0.087833333,0.047346242,0.459860382198953,0.73515461543372,0.0619403684778023,0.673214246955918,0.73515461543372
+"P76067","Candida albicans","II","Bloodstream","a/α","LEE",37,0.04597,0.04291,0,-0.10744,0.09255,0.856814186182797,0.10734,0.13447,0.126852781683069,0,0.015227898,0,0.856814186182797,0.126852781683069,0.983666967865866,0.983666967865866
+"P78042","Candida albicans","III","Bloodstream","a/α","LEE",37,0.0856,0.02825,0.0464464863344428,-0.09704,0.0282,0.879387059666182,0.01583,0.0048,0.00432483095668474,0.066833333,0.017062793,0.349912738219895,0.925833546000625,0.0507713172911275,0.883711890622867,0.93015837695731
+"P78048","Candida albicans","I","Bloodstream","α/α","LEE",37,0.22588,0.21394,0.210855093525854,-0.20542,0.1273,0.64415167234606,0.30209,0.32414,0.387614648189061,0.038666667,0.007289643,0.202443282722513,0.855006765871914,0.598469741714915,1.03176632053512,1.24262141406098
+"P87","Candida albicans","SA","Oral cavity","a/a","LEE",37,0.16386,0.15684,0.13816745581548,-0.17491,0.16107,0.710372669459336,0.17733,0.17793,0.220566378790922,0.033666667,0.007559027,0.176265272251309,0.848540125274816,0.358733834606402,0.930939048250258,1.06910650406574
+"P94015","Candida albicans","I","Bloodstream","a/a","LEE",37,0.89921,0.1619,1,-0.17423,0.22793,0.711848588110173,0.38644,0.19029,0.500555667135302,0.069666667,0.007243771,0.364746947643979,1.71184858811017,1.5005556671353,1.21240425524548,2.21240425524547
+"SC5314","Candida albicans","I","Bloodstream","a/α","LEE",37,0.48713,0.20948,0.51704092635132,-0.09857,0.05007,0.876066242701799,0.75945,0.16494,1,0.191,0.035179303,1,1.39310716905312,1.51704092635132,1.8760662427018,2.39310716905312
+"WO-1","Candida albicans","WO-1","Bloodstream","α/α","LEE",37,0.10041,0.06213,0.0638038535464816,-0.36724,0.28513,0.292926442819005,0.08908,0.02135,0.102403427729798,0.027,0.012212243,0.141361256544503,0.356730296365487,0.16620728127628,0.395329870548803,0.459133724095285
+"12C","Candida albicans","I","Oral cavity","a/a","SPI",30,0.0982,0.08047,0.0690805864677548,0.32242,0.14801,0.0865159461569008,0.72335,0.17579,0.721497940120522,0.201,0.017663522,0.666471278624234,0.155596532624656,0.790578526588277,0.808013886277423,0.877094472745178
+"19F","Candida albicans","I","Vagina","α/α","SPI",30,0.10524,0.07954,0.0797106920138312,0.30781,0.04173,0.0765127966368603,0.05215,0.0477,0.010654183832329,0.288833333,0.108809849,0.975381008177469,0.156223488650691,0.0903648758461602,0.0871669804691893,0.16687767248302
+"529L","Candida albicans","529L","Oral cavity","a/α","SPI",30,0.16263,0.08362,0.166367191628792,0.5576,0.32184,0.247538581620497,0.5625,0.12276,0.551147495843174,0.228333333,0.020055479,0.762602578854165,0.413905773249289,0.717514687471966,0.798686077463671,0.965053269092463
+"GC75","Candida albicans","SA","Oral cavity","a/α","SPI",30,0.09103,0.06041,0.0582541863590379,0.2877,0.08979,0.0627439166335739,0.04209,0.0418,0,0.191666667,0.02208066,0.633645957366525,0.120998102992612,0.0582541863590379,0.0627439166335739,0.120998102992612
+"L26","Candida albicans","I","Vagina","a/a","SPI",30,0.05245,0.02595,0,0.23279,0.06747,0.0251482328453859,0.25321,0.09646,0.223589591519015,0.240166667,0.011728408,0.804220400708348,0.0251482328453859,0.223589591519015,0.248737824364401,0.248737824364401
+"P34048","Candida albicans","III","Bloodstream","a/α","SPI",30,0.09708,0.06283,0.0673894333126972,0.29598,0.12411,0.0684130527065332,0.0929,0.08308,0.053811041801256,0.2645,0.018282505,0.889800704442908,0.13580248601923,0.121200475113953,0.122224094507789,0.189613527820486
+"P37005","Candida albicans","I","Oral cavity","a/a","SPI",30,0.09069,0.06442,0.057740800579824,0.20884,0.05177,0.00875018828652415,0.26856,0.20386,0.239846223907311,0.271833333,0.012432037,0.915592028037036,0.0664909888663482,0.297587024487135,0.248596412193835,0.306337212773659
+"P37037","Candida albicans","I","Oral cavity","a/α","SPI",30,0.1607,0.12012,0.163452972352666,0.31635,0.16365,0.0823599490599367,0.23881,0.26465,0.208339069929996,0.193,0.018015425,0.638335287969912,0.245812921412603,0.371792042282662,0.290699018989933,0.454151991342599
+"P37039","Candida albicans","I","Bloodstream","a/α","SPI",30,0.2071,0.10569,0.233515031633624,0.21387,0.05646,0.01219411998302,0.25521,0.15323,0.22570771951749,0.233166667,0.018697148,0.779601408885816,0.245709151616644,0.459222751151114,0.23790183950051,0.471416871134134
+"P57055","Candida albicans","III","Bloodstream","a/α","SPI",30,0.09403,0.05681,0.0627840608815136,0.28936,0.20889,0.0638804825612445,0.13592,0.09137,0.0993719750484522,0.243166667,0.011710631,0.814771397203718,0.126664543442758,0.162156035929966,0.163252457609697,0.22603651849121
+"P57072","Candida albicans","II","Bloodstream","α/α","SPI",30,0.19927,0.2408,0.221692059129962,0.2285,0.08998,0.0222109630684541,0.49241,0.26577,0.476917700136619,0.224166667,0.099432417,0.747948419399705,0.243903022198416,0.698609759266581,0.499128663205073,0.720820722335035
+"P60002","Candida albicans","SA","Bloodstream","a/a","SPI",30,0.11701,0.10209,0.0974828997236777,0.35206,0.27185,0.106809810070248,0.51808,0.34868,0.504103872997045,0.200666667,0.012569805,0.665298946852637,0.204292709793926,0.601586772720723,0.610913683067293,0.708396582790971
+"P75010","Candida albicans","E","Bloodstream","a/α","SPI",30,0.1753,0.13175,0.185498361695381,0.34071,0.26432,0.0990387117093678,0.41664,0.15219,0.396672420914396,0.251,0.129727492,0.842321220213741,0.284537073404749,0.582170782609777,0.495711132623764,0.681209494319145
+"P75016","Candida albicans","SA","Bloodstream","a/α","SPI",30,0.19944,0.07057,0.221948752019569,0.28122,0.12031,0.0583072014460405,0.67125,0.24123,0.666320705760249,0.187333333,0.014161764,0.618405626750769,0.28025595346561,0.888269457779818,0.72462790720629,0.946576659225859
+"P75063","Candida albicans","SA","Bloodstream","α/-","SPI",30,0.07629,0.04794,0.0359974028719404,0.23992,0.06287,0.030029988908212,0.13147,0.10086,0.0946591402518454,0.2305,0.118026833,0.770222744162043,0.0660273917801524,0.130656543123786,0.124689129160057,0.160686532031998
+"P76055","Candida albicans","II","Bloodstream","a/α","SPI",30,0.10136,0.06157,0.073852054298096,0.22086,0.11484,0.0169800210880907,0.07447,0.04299,0.0342924922953094,0.185166667,0.023723523,0.610785464959889,0.0908320753861867,0.108144546593405,0.0512725133834001,0.125124567681496
+"P76067","Candida albicans","II","Bloodstream","a/α","SPI",30,0.58777,0.32092,0.808310809790569,1.6566,0.86369,1,0.98632,0.02782,1,0.229,0.090368997,0.764947245914358,1.80831080979057,1.80831080979057,2,2.80831080979057
+"P78042","Candida albicans","III","Bloodstream","a/α","SPI",30,0.15975,0.12387,0.162018512087215,0.43716,0.1121,0.165075930820108,0.7606,0.26684,0.760948074092118,0.263666667,0.015362291,0.886869873255416,0.327094442907323,0.922966586179333,0.926024004912226,1.08804251699944
+"P78048","Candida albicans","I","Bloodstream","α/α","SPI",30,0.16181,0.14103,0.165129025925982,0.26257,0.10609,0.0455379517164884,0.36639,0.12468,0.343454454952713,0.227,0.010657548,0.757913248250778,0.21066697764247,0.508583480878695,0.388992406669201,0.554121432595183
+"P87","Candida albicans","SA","Oral cavity","a/a","SPI",30,0.08316,0.05835,0.0463708155284099,0.19606,0.04941,0,0.07792,0.04818,0.0379462630926787,0.198333333,0.018568941,0.65709261390046,0.0463708155284099,0.0843170786210886,0.0379462630926787,0.0843170786210886
+"P94015","Candida albicans","I","Bloodstream","a/a","SPI",30,0.47403,0.30007,0.636568167061772,0.98475,0.49841,0.539998904514769,0.80155,0.13144,0.804316744860892,0.0115,0.003947573,0,1.17656707157654,1.44088491192266,1.34431564937566,1.98088381643743
+"SC5314","Candida albicans","I","Bloodstream","a/α","SPI",30,0.71472,0.19872,1,0.51027,0.14905,0.215132759116491,0.9033,0.06706,0.912076506783305,0.295833333,0.01332604,1,1.21513275911649,1.9120765067833,1.1272092658998,2.1272092658998
+"WO-1","Candida albicans","WO-1","Bloodstream","α/α","SPI",30,0.09083,0.02724,0.0579521947242061,0.90116,0.81838,0.482766647952127,0.46306,0.05515,0.445834171758999,0.182333333,0.038016078,0.600820632591818,0.540718842676333,0.503786366483205,0.928600819711126,0.986553014435332
+"12C","Candida albicans","I","Oral cavity","a/a","SPI",37,0.16729,0.06647,0.177445193004016,0.42637,0.30168,0.235425285744338,0.44496,0.08997,0.49933705966463,0.091333333,0.009358597,0.166666665829146,0.412870478748354,0.676782252668646,0.734762345408968,0.912207538412984
+"19F","Candida albicans","I","Vagina","α/α","SPI",37,0.10546,0.07337,0.109603019596656,0.34263,0.11059,0.117986115980646,0.34551,0.1262,0.370063694267516,0.158166667,0.156771242,0.33458961557789,0.227589135577302,0.479666713864172,0.488049810248162,0.597652829844818
+"529L","Candida albicans","529L","Oral cavity","a/α","SPI",37,0.07115,0.04939,0.0719568127455068,0.53103,0.22386,0.382203211555992,0.24961,0.0551,0.24540491355778,0.047,0.017198999,0.0552763819095477,0.454160024301499,0.317361726303287,0.627608125113772,0.699564937859279
+"GC75","Candida albicans","SA","Oral cavity","a/α","SPI",37,0.09984,0.04517,0.10343654677522,0.29082,0.08333,0.0453264146974266,0.14818,0.0789,0.113557779799818,0.1405,0.044180187,0.290201005025126,0.148762961472647,0.216994326575038,0.158884194497245,0.262320741272465
+"L26","Candida albicans","I","Vagina","a/a","SPI",37,0.00557,0.00548,0,0.34302,0.20355,0.118533062197602,0.24194,0.05546,0.235434810867022,0.189666667,0.084082136,0.413735344221106,0.118533062197602,0.235434810867022,0.353967873064624,0.353967873064624
+"P34048","Candida albicans","III","Bloodstream","a/α","SPI",37,0.12716,0.08492,0.133413065900064,0.37123,0.17569,0.158095505224038,0.23622,0.12044,0.227999480046796,0.099666667,0.012829004,0.187604690954774,0.291508571124102,0.36141254594686,0.386094985270834,0.519508051170898
+"P37005","Candida albicans","I","Oral cavity","a/a","SPI",37,0.01414,0.01078,0.00940332243411091,0.27542,0.10378,0.0237290512586775,0.20972,0.12368,0.193552580267776,0.140166667,0.016079663,0.289363484924623,0.0331323736927884,0.202955902701887,0.217281631526453,0.226684953960564
+"P37037","Candida albicans","I","Oral cavity","a/α","SPI",37,0.05014,0.03619,0.0489038600803178,0.52622,0.22336,0.375457541546876,0.15371,0.177,0.120746132848044,0.025,0.028732966,0,0.424361401627194,0.169649992928362,0.49620367439492,0.545107534475238
+"P37039","Candida albicans","I","Bloodstream","a/α","SPI",37,0.07807,0.04203,0.0795496938708332,0.2585,0.06691,0,0.4157,0.11801,0.46130248277655,0.081333333,0.017240134,0.141541037688442,0.0795496938708332,0.540852176647383,0.46130248277655,0.540852176647383
+"P57055","Candida albicans","III","Bloodstream","a/α","SPI",37,0.1025,0.08804,0.106355197612412,0.3359,0.16746,0.108547787672674,0.17289,0.07504,0.145677888989991,0.2765,0.062311048,0.631909547738694,0.214902985285086,0.252033086602403,0.254225676662665,0.360580874275077
+"P57072","Candida albicans","II","Bloodstream","α/α","SPI",37,0.03617,0.08346,0.0335754569992758,0.37518,0.18072,0.163635088703457,0.06082,0.02629,0,0.149166667,0.081202764,0.311976550251256,0.197210545702733,0.0335754569992758,0.163635088703457,0.197210545702733
+"P60002","Candida albicans","SA","Bloodstream","a/a","SPI",37,0.32415,0.28812,0.349557813425794,0.36074,0.11701,0.143384054414136,0.5106,0.15842,0.584661380475757,0.262,0.128355842,0.595477386934673,0.49294186783993,0.934219193901551,0.728045434889893,1.07760324831569
+"P75010","Candida albicans","E","Bloodstream","a/α","SPI",37,0.12209,0.07309,0.12785007351489,0.3051,0.08911,0.0653530607951756,0.34994,0.12383,0.37582217600416,0.309833333,0.112417995,0.715661640703518,0.193203134310066,0.50367224951905,0.441175236799336,0.569025310314226
+"P75016","Candida albicans","SA","Bloodstream","a/α","SPI",37,0.13642,0.0905,0.143573481972394,0.36784,0.15372,0.153341280415118,0.64102,0.08285,0.754192122708956,0.1315,0.052787046,0.267587939698493,0.296914762387512,0.89776560468135,0.907533403124074,1.05110688509647
+"P75063","Candida albicans","SA","Bloodstream","α/-","SPI",37,0.05907,0.0417,0.0587021878908907,0.29274,0.08695,0.0480190729962836,0.22255,0.12055,0.210230079292864,0.127333333,0.049466319,0.257118927135678,0.106721260887174,0.268932267183755,0.258249152289148,0.316951340180038
+"P76055","Candida albicans","II","Bloodstream","a/α","SPI",37,0.05388,0.03929,0.0530075270468959,0.36338,0.20776,0.147086459575065,0.39259,0.0408,0.431262186403224,0.1255,0.041322579,0.25251256281407,0.200093986621961,0.48426971345012,0.578348645978289,0.631356173025185
+"P76067","Candida albicans","II","Bloodstream","a/α","SPI",37,0.15934,0.12829,0.168722157607145,0.43094,0.12353,0.241834373466096,0.8122,0.09038,0.97670609645132,0.252666667,0.080844329,0.572026801507538,0.410556531073241,1.14542825405847,1.21854046991742,1.38726262752456
+"P78042","Candida albicans","III","Bloodstream","a/α","SPI",37,0.0949,0.09499,0.0980161952204349,0.33901,0.08645,0.112909333146343,0.49319,0.1042,0.562030417262446,0.265666667,0.060271607,0.604690118090452,0.210925528366778,0.660046612482881,0.674939750408789,0.772955945629224
+"P78048","Candida albicans","I","Bloodstream","α/α","SPI",37,0.10154,0.09521,0.105301849941846,0.2672,0.0732,0.0122011079166959,0.22462,0.09327,0.212920837124659,0.0675,0.009706813,0.10678391959799,0.117502957858542,0.318222687066505,0.225121945041355,0.330423794983201
+"P87","Candida albicans","SA","Oral cavity","a/a","SPI",37,0.38003,0.32148,0.410871425749961,0.78521,0.30508,0.738671902391137,0.83012,0.1172,1,0.423,0.023212185,1,1.1495433281411,1.41087142574996,1.73867190239114,2.1495433281411
+"P94015","Candida albicans","I","Bloodstream","a/a","SPI",37,0.36477,0.18145,0.394127586736597,0.42707,0.25173,0.236406984082463,0.5957,0.23976,0.69528142467178,0.033833333,0.008698659,0.0221943040201005,0.63053457081906,1.08940901140838,0.931688408754243,1.32581599549084
+"SC5314","Candida albicans","I","Bloodstream","a/α","SPI",37,0.91695,0.11797,1,0.58747,0.21624,0.46135614613281,0.6375,0.03949,0.749616534511894,0.2955,0.018147543,0.67964824120603,1.46135614613281,1.74961653451189,1.2109726806447,2.2109726806447
+"WO-1","Candida albicans","WO-1","Bloodstream","α/α","SPI",37,0.15499,0.06008,0.163949175974895,0.97155,0.44132,1,0.39958,0.06509,0.440348368646822,0.080833333,0.038594761,0.140284756281407,1.1639491759749,0.604297544621717,1.44034836864682,1.60429754462172
+"12C","Candida albicans","I","Oral cavity","a/a","YPD",30,0.47895,0.10898,0.0281911738154806,0.23136,0.12083,0.574409139104559,0.7596,0.05717,0.729699341114035,0.687833333,0.051020965,0.64463579208251,0.60260031292004,0.757890514929516,1.30410848021859,1.33229965403407
+"19F","Candida albicans","I","Vagina","α/α","YPD",30,0.47272,0.10506,0.0121224626653942,0.23699,0.13532,0.593665560762048,0.25515,0.05239,0.162506465177989,0.552333333,0.026159766,0.455434023230565,0.605788023427442,0.174628927843383,0.756172025940037,0.768294488605431
+"529L","Candida albicans","529L","Oral cavity","a/α","YPD",30,0.6407,0.06675,0.445384436821336,0.12031,0.04655,0.194582207476827,0.4677,0.07502,0.401493175020801,0.525833333,0.121769477,0.41843146327059,0.639966644298163,0.846877611842137,0.596075382497628,1.04145981931896
+"GC75","Candida albicans","SA","Oral cavity","a/α","YPD",30,0.56731,0.10903,0.256093471924892,0.08501,0.07966,0.0738447857167288,0.11062,0.05873,0,0.382666667,0.021959559,0.218524552216453,0.329938257641621,0.256093471924892,0.0738447857167288,0.329938257641621
+"L26","Candida albicans","I","Vagina","a/a","YPD",30,0.57788,0.10689,0.283356116685151,0.18267,0.07651,0.407873584841126,0.66297,0.07945,0.621050619532708,0.578,0.052860666,0.491272981141515,0.691229701526277,0.904406736217859,1.02892420437383,1.31228032105899
+"P34048","Candida albicans","III","Bloodstream","a/α","YPD",30,0.59963,0.18044,0.339454747104795,0.06372,0.06655,0.00102609706878269,0.30547,0.1267,0.219085205424003,0.4895,0.046867722,0.367698394105374,0.340480844173578,0.558539952528798,0.220111302492786,0.559566049597581
+"P37005","Candida albicans","I","Oral cavity","a/a","YPD",30,0.79728,0.19194,0.849242990895257,0.06902,0.06214,0.0191538119506105,0.42248,0.10903,0.350648766556478,0.825666667,0.018649546,0.837095648905837,0.868396802845868,1.19989175745173,0.369802578507088,1.21904556940235
+"P37037","Candida albicans","I","Oral cavity","a/α","YPD",30,0.73641,0.1988,0.692244203141523,0.18048,0.16298,0.400383076239012,0.35016,0.18586,0.269333693134543,0.525666667,0.050334437,0.418198743698579,1.09262727938053,0.961577896276066,0.669716769373555,1.36196097251508
+"P37039","Candida albicans","I","Bloodstream","a/α","YPD",30,0.55519,0.13336,0.224832993732429,0.12162,0.11937,0.199062831343845,0.23444,0.09795,0.139220580629202,0.761166667,0.03512715,0.747032814286277,0.423895825076274,0.364053574361631,0.338283411973047,0.563116405705476
+"P57055","Candida albicans","III","Bloodstream","a/α","YPD",30,0.51045,0.09946,0.109437466147378,0.09531,0.04345,0.109074118411602,0.48412,0.13152,0.419955474600283,0.384833333,0.014314911,0.221549917823179,0.21851158455898,0.529392940747661,0.529029593011885,0.638467059159263
+"P57072","Candida albicans","II","Bloodstream","α/α","YPD",30,0.61028,0.15418,0.366923731655103,0.09995,0.09854,0.124944419742108,0.47068,0.11725,0.404843823787357,0.522666667,0.051629019,0.414009774646507,0.491868151397211,0.77176755544246,0.529788243529465,0.896711975184568
+"P60002","Candida albicans","SA","Bloodstream","a/a","YPD",30,0.53121,0.06501,0.162982641665162,0.06342,0.10451,0,0.47018,0.3332,0.404281634396996,0.312,0.133677057,0.119851058524413,0.162982641665162,0.567264276062158,0.404281634396996,0.567264276062158
+"P75010","Candida albicans","E","Bloodstream","a/α","YPD",30,0.48822,0.11393,0.052100796987439,0.15298,0.06567,0.306324178267264,0.70655,0.14193,0.670051046796645,0.549,0.043755635,0.450779613638147,0.358424975254703,0.722151843784084,0.976375225063909,1.02847602205135
+"P75016","Candida albicans","SA","Bloodstream","a/α","YPD",30,0.52052,0.1131,0.135410487219829,0.11834,0.12852,0.187844170058487,0.52149,0.17845,0.461973509635926,0.3835,0.076235199,0.219688154265477,0.323254657278316,0.597383996855755,0.649817679694413,0.785228166914242
+"P75063","Candida albicans","SA","Bloodstream","α/-","YPD",30,0.62018,0.14794,0.392458280673699,0.06488,0.07008,0.00499367240140914,0.31787,0.08044,0.233027502304976,0.481333333,0.018397615,0.35629508899818,0.397451953075108,0.625485782978675,0.238021174706385,0.630479455380084
+"P76055","Candida albicans","II","Bloodstream","a/α","YPD",30,0.46802,0.25603,0,0.21895,0.14124,0.531962923692581,0.36437,0.12645,0.285311115608626,0.585333333,0.059951833,0.501512682803363,0.531962923692581,0.285311115608626,0.817274039301207,0.817274039301207
+"P76067","Candida albicans","II","Bloodstream","a/α","YPD",30,0.49499,0.08823,0.069562301720358,0.35579,0.1547,1,0.99271,0.02307,0.991803278688525,0.547666667,0.272198253,0.448917850080445,1.06956230172036,1.06136558040888,1.99180327868853,2.06136558040888
+"P78042","Candida albicans","III","Bloodstream","a/α","YPD",30,0.4811,0.10026,0.0337365556730547,0.18314,0.14659,0.409481136915552,0.79665,0.10029,0.771357574939846,0.616333333,0.050002222,0.544798696341446,0.443217692588607,0.805094130612901,1.1808387118554,1.21457526752845
+"P78048","Candida albicans","I","Bloodstream","α/α","YPD",30,0.56276,0.13242,0.244357896365841,0.06374,0.06498,0.00109450354003489,0.43094,0.08616,0.3601610110414,0.7795,0.022375582,0.772632069139057,0.245452399905876,0.604518907407241,0.361255514581435,0.605613410947276
+"P87","Candida albicans","SA","Oral cavity","a/a","YPD",30,0.58081,0.15031,0.290913311495706,0.103,0.10461,0.135376406608065,0.41346,0.25184,0.34050686995435,0.555833333,0.046129046,0.460321153791316,0.426289718103771,0.631420181450056,0.475883276562415,0.766796588058121
+"P94015","Candida albicans","I","Bloodstream","a/a","YPD",30,0.85573,0.16004,1,0.10803,0.1713,0.152580634127988,0.56862,0.24406,0.514965481571432,0.226166667,0.022637849,0,1.15258063412799,1.51496548157143,0.66754611569942,1.66754611569942
+"SC5314","Candida albicans","I","Bloodstream","a/α","YPD",30,0.50681,0.11883,0.100049005700137,0.23651,0.1388,0.592023805451996,1,0,1,0.942333333,0.112602546,1,0.692072811152133,1.10004900570014,1.592023805452,1.69207281115213
+"WO-1","Candida albicans","WO-1","Bloodstream","α/α","YPD",30,0.72074,0.13305,0.651827396765624,0.13537,0.06879,0.246092280329719,0.62085,0.10662,0.573691785288628,0.3555,0.085379057,0.180591109779466,0.897919677095343,1.22551918205425,0.819784065618347,1.47161146238397
+"12C","Candida albicans","I","Oral cavity","a/a","YPD",37,0.48142,0.11837,0.189534327489029,0.15111,0.0344,0.591392020815265,0.64082,0.03929,0.6356663585841,0.311,0.041115353,0.235687168109339,0.780926348304294,0.825200686073129,1.22705837939937,1.41659270688839
+"19F","Candida albicans","I","Vagina","α/α","YPD",37,0.51856,0.11322,0.266778977142738,0.04413,0.07745,0.359431916738942,0.11124,0.05049,0,0.527,0.176534935,0.432498102050114,0.62621089388168,0.266778977142738,0.359431916738942,0.62621089388168
+"529L","Candida albicans","529L","Oral cavity","a/α","YPD",37,0.72085,0.16754,0.687506499448847,0.13504,0.07494,0.55654813529922,0.50243,0.09252,0.469553840429235,0.222833333,0.025597309,0.155353075170843,1.24405463474807,1.15706033987808,1.02610197572846,1.7136084751773
+"GC75","Candida albicans","SA","Oral cavity","a/α","YPD",37,0.49024,0.08315,0.207878371914062,0.08792,0.05816,0.454379878577624,0.30373,0.19683,0.23104992137893,0.739,0.154473748,0.625664389066059,0.662258250491686,0.438928293292992,0.685429799956554,0.893308171870616
+"L26","Candida albicans","I","Vagina","a/a","YPD",37,0.57127,0.10763,0.376406480730434,0.30077,0.29583,0.915893321769297,0.69887,0.05334,0.705345032468702,0.200166667,0.004818944,0.134700076537585,1.29229980249973,1.08175151319914,1.621238354238,1.99764483496843
+"P34048","Candida albicans","III","Bloodstream","a/α","YPD",37,0.57366,0.16839,0.381377259208419,0.19643,0.31083,0.689657415437988,0.42058,0.16582,0.371307510412791,0.186833333,0.046366894,0.12255125284738,1.07103467464641,0.75268476962121,1.06096492585078,1.4423421850592
+"P37005","Candida albicans","I","Oral cavity","a/a","YPD",37,0.51342,0.03323,0.256088683679624,0.32607,0.28993,0.970750216825672,0.41441,0.07151,0.363901525608863,0.476833333,0.064052062,0.386788154897494,1.2268389005053,0.619990209288487,1.33465174243453,1.59074042611416
+"P37037","Candida albicans","I","Oral cavity","a/α","YPD",37,0.51091,0.14236,0.250868326365924,0.09882,0.08609,0.478013876843018,0.3166,0.19692,0.246498061480477,0.092833333,0.039630235,0.0369020501138952,0.728882203208942,0.497366387846401,0.724511938323495,0.975380264689419
+"P37039","Candida albicans","I","Bloodstream","a/α","YPD",37,0.40301,0.0926,0.0264553565857614,0.08113,0.13105,0.439657415437988,0.30905,0.12907,0.237435632749577,0.556833333,0.214545579,0.459681093394078,0.466112772023749,0.263890989335338,0.677093048187565,0.703548404773326
+"P57055","Candida albicans","III","Bloodstream","a/α","YPD",37,0.45593,0.06632,0.136519623135958,0.02895,0.13351,0.326517779705117,0.45039,0.13183,0.407089099878768,0.442,0.199082688,0.355049354897494,0.463037402841075,0.543608723014726,0.733606879583885,0.870126502719843
+"P57072","Candida albicans","II","Bloodstream","α/α","YPD",37,0.50022,0.16169,0.228635011751003,0.13113,0.22728,0.54807025151778,0.61472,0.11715,0.60433796257397,0.999,0.15214622,0.862566439179955,0.776705263268783,0.832972974324973,1.15240821409175,1.38104322584275
+"P60002","Candida albicans","SA","Bloodstream","a/a","YPD",37,0.52816,0.1786,0.286745283999917,0.05155,0.06281,0.375520381613183,0.40271,0.25023,0.349857761880184,0.834,0.229289967,0.712224753530752,0.6622656656131,0.636603045880101,0.725378143493367,1.01212342749328
+"P75010","Candida albicans","E","Bloodstream","a/α","YPD",37,0.48242,0.1616,0.191614151119985,0.09906,0.07962,0.478534258456201,0.6534,0.09674,0.650766405396646,0.148666667,0.063838337,0.08777524738041,0.670148409576186,0.842380556516631,1.12930066385285,1.32091481497283
+"P75016","Candida albicans","SA","Bloodstream","a/α","YPD",37,0.48678,0.11412,0.200682182150954,0.06117,0.0636,0.396379011274935,0.39094,0.19148,0.33572997563347,0.055333333,0.025249862,0.00273348519362186,0.597061193425889,0.536412157784424,0.732108986908405,0.932791169059359
+"P75063","Candida albicans","SA","Bloodstream","α/-","YPD",37,0.41584,0.12221,0.0531394937709282,0.33956,0.29983,1,0.48427,0.04008,0.447755998607627,0.230666667,0.085450603,0.162490509339408,1.05313949377093,0.500895492378555,1.44775599860763,1.50089549237856
+"P76055","Candida albicans","II","Bloodstream","a/α","YPD",37,0.39029,0.15701,0,0.18664,0.12284,0.668430182133565,0.31039,0.09938,0.239044063809101,1.149833333,0.061313403,1,0.668430182133565,0.239044063809101,0.907474245942666,0.907474245942666
+"P76067","Candida albicans","II","Bloodstream","a/α","YPD",37,0.45328,0.09506,0.131008090513924,0.13155,0.09805,0.54898091934085,0.94435,0.06617,1,0.515833333,0.261253176,0.422323462414579,0.679989009854774,1.13100809051392,1.54898091934085,1.67998900985477
+"P78042","Candida albicans","III","Bloodstream","a/α","YPD",37,0.45876,0.1586,0.142405524011564,0.13465,0.15554,0.555702515177797,0.64669,0.10074,0.642712246882164,0.330333333,0.219723817,0.253302961275626,0.698108039189361,0.785117770893728,1.19841476205996,1.34082028607153
+"P78048","Candida albicans","I","Bloodstream","α/α","YPD",37,0.55617,0.1529,0.345001143902997,0.21008,0.18373,0.719254119687771,0.17674,0.10173,0.0786210704468798,0.285666667,0.064599837,0.212604404555809,1.06425526359077,0.423622214349877,0.797875190134651,1.14287633403765
+"P87","Candida albicans","SA","Oral cavity","a/a","YPD",37,0.48788,0.17278,0.202969988145005,0.19651,0.29038,0.689830875975716,0.85318,0.12485,0.890566671868061,0.125333333,0.067227846,0.0665148063781321,0.892800864120721,1.09353666001307,1.58039754784378,1.78336753598878
+"P94015","Candida albicans","I","Bloodstream","a/a","YPD",37,0.8711,0.12942,1,-0.01541,0.11532,0.230333911535126,0.34233,0.09547,0.277382338466709,0.052333333,0.007932003,0,1.23033391153513,1.27738233846671,0.507716250001835,1.50771625000184
+"SC5314","Candida albicans","I","Bloodstream","a/α","YPD",37,0.48706,0.30111,0.201264532767621,-0.12164,0.1642,0,0.87697,0.09975,0.919122324783042,1.090166667,0.034047353,0.945634017312073,0.201264532767621,1.12038685755066,0.919122324783042,1.12038685755066
+"WO-1","Candida albicans","WO-1","Bloodstream","α/α","YPD",37,0.66316,0.13471,0.56752147417899,0.11466,0.07102,0.512359063313096,0.46024,0.11976,0.418912268487955,0.178166667,0.123078566,0.114654518451025,1.07988053749209,0.986433742666945,0.931271331801051,1.49879280598004
diff --git a/score_wrangler.R b/score_wrangler.R
index 5ccd98798683c5865ec5f0c3dc43ed75262105b2..98e050bccd283150ea464a8070b0576cb41c52d6 100644
--- a/score_wrangler.R
+++ b/score_wrangler.R
@@ -94,6 +94,11 @@ big_df$Biofilm.norm <- bio_sorted$Normalized.Scores
 # New file
 write.csv( big_df, "compiled_data.csv", row.names = FALSE )
 
+big_df$adh_fil <- big_df$Adhesion.norm + big_df$Filamentation.norm
+big_df$adh_inv <- big_df$Adhesion.norm + big_df$Invasion.norm
+big_df$fil_inv <- big_df$Filamentation.norm + big_df$Invasion.norm
+big_df$all_sum <- big_df$Adhesion.norm + big_df$Filamentation.norm + big_df$Invasion.norm
 
+write.csv( big_df, "compiled_and_combination_scores_data.csv", row.names = FALSE )