SubCellBarCode 1.0.0
SubCellBarCode
can be installed through BiocManager
package as follows:
if (!requireNamespace("BiocManager"))
install.packages("BiocManager")
BiocManager::install("SubCellBarCode")
library(SubCellBarCode)
## Registered S3 methods overwritten by 'ggplot2':
## method from
## [.quosures rlang
## c.quosures rlang
## print.quosures rlang
As example data we here provide the publicly available HCC827 (human lung
adenocarcinoma cell line) TMT10plex labelled proteomics dataset
(Orre et al. 2019, Molecular Cell). The data.frame
consists of
10480 proteins as rows (rownames must be gene
centric protein ids) and 5 fractions with duplicates as columns
(replicates should be named “.A.” and “.B.”, repectively).
head(hcc827Ctrl)
## FS1.A.HCC827 FS1.B.HCC827 FS2.A.HCC827 FS2.B.HCC827 FP1.A.HCC827
## A2M 6.6567 4.8238 0.8265 0.8279 0.4475
## A2ML1 1.2876 1.0878 0.6390 0.7828 0.8760
## A4GALT 0.4711 0.4106 0.2742 0.2689 0.8389
## AAAS 0.5108 0.4514 0.4470 0.4752 1.6576
## AACS 4.5593 4.4522 1.5694 1.6417 0.5294
## AAED1 0.8170 0.7031 0.5415 0.5902 0.9429
## FP1.B.HCC827 FP2.A.HCC827 FP2.B.HCC827 FP3.A.HCC827 FP3.B.HCC827
## A2M 0.5803 0.6414 0.6014 0.6497 0.6216
## A2ML1 0.9138 2.6957 1.3606 0.7715 0.7859
## A4GALT 0.8043 1.9637 1.8340 1.6739 1.6848
## AAAS 1.7316 1.3773 1.4688 1.0071 1.0457
## AACS 0.5197 0.5109 0.5232 0.4197 0.4243
## AAED1 0.9505 1.9035 1.8475 1.1060 1.1636
The classification of protein localisation using the SubCellBarCode
method is dependent on 3365 marker proteins as defined in Orre et al.
The markerProteins data.frame
contain protein names (gene symbol),
associated subcellular localization (compartment), color code for
the compartment and the median normalized fractionation
profile (log2) based on five different human cell lines
(NCI-H322, HCC827, MCF7, A431and U251) here called the
“5CL marker profile”.
head(markerProteins)
## Proteins Compartments Cyto Nsol NucI Horg
## AAAS AAAS S4 -1.0033518 -1.15489468 0.9303367 0.48554266
## AACS AACS C4 2.1716569 0.13246046 -1.0394634 -1.13265585
## AAK1 AAK1 C3 1.8556445 0.10015281 -0.6605511 -0.36985132
## AARS AARS C4 2.1012831 0.05855811 -1.0439250 -1.08451971
## AASDHPPT AASDHPPT C5 1.7065897 0.51507061 -0.7196594 -0.65267201
## AATF AATF N3 -0.8922053 -1.10101864 1.2202070 0.05316807
## Lorg Colour
## AAAS 0.1618329 tomato2
## AACS -1.3217619 deepskyblue2
## AAK1 -0.6741959 cyan
## AARS -1.2180979 deepskyblue2
## AASDHPPT -1.0059841 turquoise3
## AATF 0.1898676 grey50
Input data.frame
is checked with “NA” values and for the correct
format. If there is any “NA” value, corresponding row is deleted.
Then, data frame is log2
transformmed.
df <- loadData(protein.data = hcc827Ctrl)
print(dim(df))
## [1] 10480 10
head(df)
## FS1.A.HCC827 FS1.B.HCC827 FS2.A.HCC827 FS2.B.HCC827 FP1.A.HCC827
## A2M 2.7348072 2.2701701 -0.2749133 -0.2724716 -1.16004041
## A2ML1 0.3646845 0.1214133 -0.6461122 -0.3532843 -0.19099723
## A4GALT -1.0858948 -1.2841945 -1.8666995 -1.8948583 -0.25342925
## AAAS -0.9691696 -1.1475217 -1.1616533 -1.0733933 0.72909591
## AACS 2.1888123 2.1545184 0.6502131 0.7151905 -0.91756990
## AAED1 -0.2915920 -0.5081982 -0.8849668 -0.7607242 -0.08482332
## FP1.B.HCC827 FP2.A.HCC827 FP2.B.HCC827 FP3.A.HCC827 FP3.B.HCC827
## A2M -0.78512917 -0.6407037 -0.7336032 -0.62215439 -0.68594159
## A2ML1 -0.13004965 1.4306600 0.4442430 -0.37426194 -0.34758234
## A4GALT -0.31419437 0.9735745 0.8749936 0.74321334 0.75257734
## AAAS 0.79210571 0.4618428 0.5546380 0.01020694 0.06446902
## AACS -0.94424904 -0.9688872 -0.9345656 -1.25256963 -1.23684342
## AAED1 -0.07324147 0.9286546 0.8855744 0.14535139 0.21859520
For the downstream analysis, we used the randomly selected subset data.
set.seed(2)
df <- df[sample(nrow(df), 6000),]
The overlap between marker proteins (3365) and input data.frame is calculated and visualized for each compartment by a bar plot.
Note that we recommend at least 20% coverage of marker proteins for each compartment. If certain compartments are underrrepresented we recommend you to perform the cell fractionation again. If all compartments are low in coverage we recommend increasing the analytical depth of the MS-analysis.
c.prots <- calculateCoveredProtein(proteinIDs = rownames(df),
markerproteins = markerProteins[,1])
## Overall Coverage of marker proteins : 0.58
To avoid reduced classification accuracy, marker proteins with noisy quantificationand marker proteins that are not representative of their associated compartment (e.g.due to cell type specific localization) are filtered out by a two-step quality control.
Marker proteins with pearson correlations less than 0.8 between A and B duplicates for each cell line were filtered out (Figure A).
Pairwise correlations between 5CL marker profile and input data for each protein (A and B replicate experiments separately) were calculated using both Pearson and Spearman correlation. The lowest value for each method were then used for filtering with cut-offs set to 0.8 and 0.6 respectively, to exclude non-representative marker proteins (Figure B).
r.markers <- markerQualityControl(coveredProteins = c.prots, protein.data = df)
## Number of removed replicate-wise proteins: 0
## Number of removed sample-wise proteins: 1
## Number of total removed marker proteins: 1
r.markers[1:5]
## [1] "N4BP2L2" "FURIN" "ATG9A" "ZNF205" "MAVS"
Optional step: After removing non-marker proteins, you can re-calculate and visualize the final coverage of the marker proteins.
## uncomment the function when running
# f.prots <- calculateCoveredProtein(r.markers, markerProteins[,1])
The spatial distribution of the marker proteins is vizualized in t-SNE map. This plot will be informative for the quality control of the generated data as it offers evaluation of the spatial distribution and separation of marker proteins.
#Default parameters
#Run the broad-range parameters to optimize well !!!
#Output dimensionality
#dims = 3
#Speed/accuracy trade-off (increase for less accuracy)
#theta = c(0.1, 0.2, 0.3, 0.4, 0.5)
#Perplexity parameter
#perplexity = c(5, 10, 20, 30, 40, 50, 60)
Information about the different t-SNE parameters that can be
modified by the user is available by typing ?Rtsne
in the console.
Although the applications of t-SNE is widespread in the field
of machine learning, it can be misleading if it is not well
optimized. Therefore, we optimize t-SNE map by grid search,
a process that can take some time
set.seed(6)
tsne.map <- tsneVisualization(protein.data = df,
markerProteins = r.markers,
dims = 3,
theta = c(0.1),
perplexity = c(60))
## Optimization process started. This may take some time!
## Optimization was performed.
## Theta value: 0.1Perplexity value: 60
We recommend 3D vizualisation by setting dims = 3
,
for optimal evaluation of marker protein cluster separation
and data modularity. You can also visualize the marker
proteins in 2 dimensional space by setting dims = 2
, although
reducing the dimensionality results in loss of information and
underestimation of data resolution.
set.seed(9)
tsne.map2 <- tsneVisualization(protein.data = df,
markerProteins = r.markers,
dims = 2,
theta = c(0.5),
perplexity = c(60))
## Optimization process started. This may take some time!
## Optimization was performed.
## Theta value: 0.5Perplexity value: 60
For replicate A and B separately, marker proteins are used for training a Support Vector Machine (SVM) classifier with a Gaussian radial basis function kernel algorithm. After tuning the parameters, the SVM model predicts (classifies) the subcellular localization for all proteins in the input data with corresponding probabilities for A and B replicate classification.
set.seed(4)
cls <- svmClassification(markerProteins = r.markers,
protein.data = df,
markerprot.df = markerProteins)
# testing data predictions for replicate A and B
test.A <- cls[[1]]$svm.test.prob.out
test.B <- cls[[2]]$svm.test.prob.out
head(test.A)
## Observation svm.pred S1 S2 S3
## N4BP2L2 N2 N2 0.0034204982 0.002713603 0.003135572
## ZNF205 N1 N1 0.0539341925 0.005611837 0.009373929
## MAVS M2 M2 0.0005904669 0.001188552 0.001075943
## NGLY1 C2 C2 0.0020717253 0.001835965 0.001706640
## RAB15 S2 S2 0.1005330801 0.850062711 0.017526771
## CHD4 N2 N2 0.0093310932 0.009050335 0.009640417
## S4 N1 N2 N3 N4
## N4BP2L2 0.002424749 0.0370000247 0.8956709656 0.026904787 0.0127955674
## ZNF205 0.003251983 0.9047763896 0.0040535626 0.005468579 0.0024351136
## MAVS 0.001988799 0.0009300487 0.0010955494 0.001556564 0.0010128144
## NGLY1 0.001777443 0.0021911577 0.0017599204 0.001974421 0.0090865761
## RAB15 0.022986723 0.0006195267 0.0006601397 0.000699539 0.0009793257
## CHD4 0.007007189 0.0147735324 0.5904820545 0.016469668 0.3054409175
## C1 C2 C3 C4 C5
## N4BP2L2 0.0026575959 0.0020172675 0.0019633826 0.0022083395 0.0027406564
## ZNF205 0.0022360891 0.0014451171 0.0011720556 0.0013531775 0.0016422573
## MAVS 0.0008742056 0.0008075442 0.0006829592 0.0008801080 0.0010014552
## NGLY1 0.0608829293 0.8509162130 0.0393558124 0.0031946915 0.0198804447
## RAB15 0.0009498403 0.0008681537 0.0007352767 0.0007446856 0.0008892102
## CHD4 0.0060342981 0.0044846791 0.0035101058 0.0037620803 0.0055981694
## M1 M2
## N4BP2L2 0.0026281681 0.0017188220
## ZNF205 0.0016849212 0.0015607954
## MAVS 0.0341655989 0.9521493909
## NGLY1 0.0016605889 0.0017054720
## RAB15 0.0009869426 0.0007580757
## CHD4 0.0090452900 0.0053701723
# all predictions for replicate A and B
all.A <- cls[[1]]$all.prot.pred
all.B <- cls[[2]]$all.prot.pred
Classification probabilities close to 1 indicate high confidence predictions, whereas probabilities close to 0 indicate low confidence predictions. To increase the overal prediction accuracy and to filter out poor predictions, one criterion and two cut-offs are defined.
The criterion is the consensus of preliminary predictions between biological duplicates. Proteins are kept in the analysis, if there is an agreement between biological duplicates. Subsequently, prediction probabilities from the two duplicates are averaged for each protein.
Cut-off is (precision - based) set when precision reach 0.9 in the test data.
Cut-off is (recall - based) set as the probability of the lowest true positive in the test data.
t.c.df <- computeThresholdCompartment(test.repA = test.A, test.repB = test.B)
head(t.c.df)
## Compartment PrecisionBasedThreshold RecallBasedThreshold OptedThreshold
## 1 S1 0.47 0.495 0.495
## 2 S2 0.785 0.51 0.785
## 3 S3 0.535 0.375 0.535
## 4 S4 0.68 0.445 0.680
## 5 N1 0 0.72 0.720
## 6 N2 0 0.53 0.530
The determined thresholds for the compartment levels are applied to all classifications.
c.cls.df <- applyThresholdCompartment(all.repA = all.A, all.repB = all.B,
threshold.df = t.c.df)
head(c.cls.df)
## Proteins svm.pred S1 S2 S3 S4
## FURIN FURIN S1 0.8044625 0.118285221 0.06148853 0.0039862411
## ATG9A ATG9A S1 0.8482675 0.013538605 0.01131488 0.0042270023
## DISC1 DISC1 S1 0.6003724 0.034584719 0.13175231 0.0231587190
## HVCN1 HVCN1 S1 0.9382960 0.005664071 0.01047046 0.0019191809
## VTI1A VTI1A S1 0.9802552 0.002545447 0.01070461 0.0004074506
## SLC35F2 SLC35F2 S1 0.7683913 0.019822117 0.16210238 0.0081724862
## N1 N2 N3 N4 C1
## FURIN 0.001063479 0.0011090607 0.0008779197 0.0010555088 0.0009208802
## ATG9A 0.085590105 0.0032762068 0.0045218381 0.0053467703 0.0066286150
## DISC1 0.045068474 0.0075255478 0.0069405674 0.0109770978 0.0939001191
## HVCN1 0.032281961 0.0013498275 0.0013276950 0.0014380712 0.0015681802
## VTI1A 0.001194382 0.0005728802 0.0005238379 0.0005018539 0.0005017726
## SLC35F2 0.017392373 0.0046300609 0.0025411416 0.0030319662 0.0041498757
## C2 C3 C4 C5 M1
## FURIN 0.0008966154 0.0007727800 0.0007533706 0.0009464182 0.0019590025
## ATG9A 0.0034716395 0.0024226870 0.0020141834 0.0035120378 0.0027487307
## DISC1 0.0175978565 0.0071947713 0.0035340674 0.0065186738 0.0044177332
## HVCN1 0.0010475977 0.0008637610 0.0008279222 0.0010973763 0.0008732059
## VTI1A 0.0005178166 0.0004366861 0.0004628942 0.0005308447 0.0004443072
## SLC35F2 0.0019535196 0.0013716268 0.0012046753 0.0017430045 0.0016115742
## M2
## FURIN 0.0014224819
## ATG9A 0.0031192271
## DISC1 0.0064569012
## HVCN1 0.0009747184
## VTI1A 0.0004000427
## SLC35F2 0.0018819501
Compartment level classification probabilities are summed to neighborhood probabilities and thresholds for neighborhood analysis are estimated as described above for compartment level analysis except precision based cut-off is set to 0.95.
t.n.df <- computeThresholdNeighborhood(test.repA = test.A, test.repB = test.B)
head(t.n.df)
## Neighborhood PrecisionBasedThreshold RecallBasedThreshold OptedThreshold
## 1 Secretory 0 0.65 0.650
## 2 Nuclear 0 0.47 0.470
## 3 Cytosol 0 0.58 0.580
## 4 Mitochondria 0 0.655 0.655
The determined thresholds for the neighborhood levels are applied to all classifications.
n.cls.df <- applyThresholdNeighborhood(all.repA = all.A, all.repB = all.B,
threshold.df = t.n.df)
head(n.cls.df)
## Proteins svm.pred.all Secretory Nuclear Cytosol Mitochondria
## FURIN FURIN Secretory 0.9882225 0.004105968 0.004290065 0.003381484
## ATG9A ATG9A Secretory 0.8773480 0.098734920 0.018049163 0.005867958
## DISC1 DISC1 Secretory 0.7898682 0.070511687 0.128745488 0.010874634
## HVCN1 HVCN1 Secretory 0.9563497 0.036397555 0.005404837 0.001847924
## VTI1A VTI1A Secretory 0.9939127 0.002792954 0.002450014 0.000844350
## CEP68 CEP68 Secretory 0.9815079 0.006802636 0.007935830 0.003753659
Individual classifications (compartment and neighborhood) are merged into one data frame.
cls.df <- mergeCls(compartmentCls = c.cls.df, neighborhoodCls = n.cls.df)
head(cls.df)
## Protein NeighborhoodCls CompartmentCls Secretory Nuclear
## A4GALT A4GALT Secretory S1 0.984063133 0.006326616
## AACS AACS Cytosol Unclassified 0.007062643 0.009852283
## AAK1 AAK1 Cytosol Unclassified 0.005356143 0.006359080
## AAMDC AAMDC Cytosol Unclassified 0.007303728 0.009675837
## AAMP AAMP Cytosol Unclassified 0.006921989 0.009249192
## AAR2 AAR2 Cytosol C1 0.008075459 0.011235787
## Cytosol Mitochondria S1 S2 S3
## A4GALT 0.007018236 0.002592015 0.967094493 0.013246951 0.002326302
## AACS 0.979996757 0.003088316 0.002163661 0.001971189 0.001603501
## AAK1 0.985783207 0.002501570 0.001509276 0.001434766 0.001288690
## AAMDC 0.979798814 0.003221621 0.002214154 0.002024458 0.001680237
## AAMP 0.980697804 0.003131016 0.002048460 0.001869439 0.001633626
## AAR2 0.976983199 0.003705555 0.002336072 0.002393591 0.001808566
## S4 N1 N2 N3 N4
## A4GALT 0.001395387 0.001279695 0.001378964 0.001444322 0.002223634
## AACS 0.001324293 0.002292800 0.001597228 0.001781031 0.004181224
## AAK1 0.001123411 0.001677854 0.001288555 0.001389773 0.002002898
## AAMDC 0.001384879 0.002331663 0.001669218 0.001846781 0.003828176
## AAMP 0.001370465 0.002117408 0.001609142 0.001746402 0.003776240
## AAR2 0.001537230 0.003717890 0.002028104 0.002288997 0.003200796
## C1 C2 C3 C4 C5
## A4GALT 0.001873890 0.001430963 0.001156778 0.001033019 0.001523587
## AACS 0.004083417 0.002940375 0.016174572 0.580101553 0.376696841
## AAK1 0.367893604 0.018527206 0.557600944 0.011618468 0.030142985
## AAMDC 0.005575327 0.002585010 0.029424444 0.519254613 0.422959420
## AAMP 0.011397487 0.003266399 0.095101320 0.354414125 0.516518473
## AAR2 0.700897075 0.250452937 0.016699538 0.002577340 0.006356309
## M1 M2
## A4GALT 0.001447960 0.001144055
## AACS 0.001440217 0.001648100
## AAK1 0.001246429 0.001255142
## AAMDC 0.001512104 0.001709517
## AAMP 0.001499016 0.001631999
## AAR2 0.001813755 0.001891799
You can query one protein at a time to plot barcode of the protein of the interest.
PSM
(Peptide-spectra-matching) count table is required for the plotting
SubCellBarCode. It is in data.frame
format;
head(hcc827CtrlPSMCount)
## Protein PSMs.for.quant
## A2M A2M 11
## A2ML1 A2ML1 2
## A4GALT A4GALT 1
## AAAS AAAS 33
## AACS AACS 60
## AAED1 AAED1 9
plotBarcode(sampleClassification = cls.df, protein = "NLRP4",
s1PSM = hcc827CtrlPSMCount)
To evaluate localization and of multiple proteins at the same time, a vector of proteins (identified by gene symbols) can be prepared and used to create a barplot showing the distribution of classifications across compartments and neighborhoods. This analysis could be helpful when evaluating co-localization of proteins, protein complex formation and compartmentalized protein level regulation.
# 26S proteasome complex (26s proteasome regulatory complex)
proteasome26s <- c("PSMA7", "PSMC3","PSMA4", "PSMB4",
"PSMB6", "PSMB5", "PSMC2","PSMC4",
"PSMB3", "PSMA6","PSMC5","PSMC6")
plotMultipleProtein(sampleClassification = cls.df, proteinList = proteasome26s)
## PSMB4,PSMC6 not exist in data
Regulation of protein localization is a the key
process in cellular signalling. The SubCellBarCode
method can be used for differential localization analysis
given two conditions such as control vs treatment, cancer
cell vs normal cell, cell state A vs cell state B, etc.
As example, we compared untreated and gefitinib (EGFR inhibitor)
treated HCC827 cells (for details, see Orre et al.).
Neighborhood classifications for condition 1 (untreated) and
condition 2 (gefitinib) is first done separately, and
classifications for overlapping proteins are then vizualized by a
sankey plot.
The HCC827 gefitinib cell lines classification was embedded
into the package for example analysis.
head(hcc827GEFClass)
## Protein NeighborhoodCls CompartmentCls
## A2M A2M Cytosol Unclassified
## A2ML1 A2ML1 Unclassified Unclassified
## A4GALT A4GALT Secretory S1
## AAAS AAAS Secretory S4
## AACS AACS Cytosol Unclassified
## AAED1 AAED1 Secretory Unclassified
sankeyPlot(sampleCls1 = cls.df, sampleCls2 = hcc827GEFClass)
## Cond1 Cond2 value
## 1 Secretory Secretory 1323
## 2 Secretory Nuclear 19
## 3 Secretory Cytosol 14
## 4 Secretory Mitochondria 9
## 5 Nuclear Secretory 15
## 6 Nuclear Nuclear 1263
## 7 Nuclear Cytosol 23
## 8 Nuclear Mitochondria 0
## 9 Cytosol Secretory 39
## 10 Cytosol Nuclear 36
## 11 Cytosol Cytosol 2019
## 12 Cytosol Mitochondria 1
## 13 Mitochondria Secretory 5
## 14 Mitochondria Nuclear 1
## 15 Mitochondria Cytosol 1
## 16 Mitochondria Mitochondria 334
As the differential localization analysis is an outlier analysis,
it will include analytical noise. To filter out such noise,
PSM
(Peptide-spectra-matching) counts and fractionation profile
correlation analysis (Pearson) was done to identify strong
candidates. The PSM count format for the input have to be the
same between the compared conditions;
head(hcc827CtrlPSMCount)
## Protein PSMs.for.quant
## A2M A2M 11
## A2ML1 A2ML1 2
## A4GALT A4GALT 1
## AAAS AAAS 33
## AACS AACS 60
## AAED1 AAED1 9
For each protein, the minimum PSM count between the two conditions
is plotted against the fractionation profile (median) correlation
between the two conditions. For proteins with different localizations
between conditions, the fractionation profile differs and therefore
we are expecting a low fractionation profile correlation. As a standard
setting for filtering of analytical noise in the differential
localization analysis we suggest to demand a fractionation profile
correlation below 0.8, and a minimum PSM count of at least 3.
However, for the exploratory analysis, you can adjust
the min.psm
and pearson.cor
parameters.
##parameters
#sampleCls1 = sample 1 classification output
#s1PSM = sample 2 PSM count
#s1Quant = Sample 1 Quantification data
#sampleCls2 = sample 2 classification output
#s2PSM = sample 2 classification output
#sample2Quant = Sample 2 Quantification data
#min.psm = minumum psm count
#pearson.cor = perason correlation coefficient
candidate.df <- candidateRelocatedProteins(sampleCls1 = cls.df,
s1PSM = hcc827CtrlPSMCount,
s1Quant = hcc827Ctrl,
sampleCls2 = hcc827GEFClass,
s2PSM = hcc827GefPSMCount,
s2Quant = hcc827GEF,
min.psm = 2,
pearson.cor = 0.8)
print(dim(candidate.df))
## [1] 35 5
head(candidate.df)
## Protein C.A C.B Pearson.Corr Min.PSMs
## ACD ACD Cytosol Nuclear 0.7274418 4
## AGAP2 AGAP2 Nuclear Cytosol 0.4888424 3
## CGNL1 CGNL1 Cytosol Nuclear 0.7850309 34
## CRY1 CRY1 Nuclear Secretory -0.7397292 4
## CSNK1A1 CSNK1A1 Cytosol Secretory 0.5202193 28
## DALRD3 DALRD3 Cytosol Secretory 0.2551116 6
Candidate subset of differentially localizing proteins can
be annotated with names by setting annotation = TRUE
, min.psm
and pearson.cor
candidate2.df <- candidateRelocatedProteins(sampleCls1 = cls.df,
s1PSM = hcc827CtrlPSMCount,
s1Quant = hcc827Ctrl,
sampleCls2 = hcc827GEFClass,
s2PSM = hcc827GefPSMCount,
s2Quant = hcc827GEF,
annotation = TRUE,
min.psm = 9,
pearson.cor = 0.05)
sessionInfo()
## R version 3.6.0 (2019-04-26)
## Platform: x86_64-pc-linux-gnu (64-bit)
## Running under: Ubuntu 18.04.2 LTS
##
## Matrix products: default
## BLAS: /home/biocbuild/bbs-3.9-bioc/R/lib/libRblas.so
## LAPACK: /home/biocbuild/bbs-3.9-bioc/R/lib/libRlapack.so
##
## locale:
## [1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C
## [3] LC_TIME=en_US.UTF-8 LC_COLLATE=C
## [5] LC_MONETARY=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8
## [7] LC_PAPER=en_US.UTF-8 LC_NAME=C
## [9] LC_ADDRESS=C LC_TELEPHONE=C
## [11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C
##
## attached base packages:
## [1] stats graphics grDevices utils datasets methods base
##
## other attached packages:
## [1] SubCellBarCode_1.0.0 BiocStyle_2.12.0
##
## loaded via a namespace (and not attached):
## [1] tidyselect_0.2.5 xfun_0.6 purrr_0.3.2
## [4] reshape2_1.4.3 splines_3.6.0 lattice_0.20-38
## [7] colorspace_1.4-1 generics_0.0.2 stats4_3.6.0
## [10] htmltools_0.3.6 yaml_2.2.0 survival_2.44-1.1
## [13] prodlim_2018.04.18 rlang_0.3.4 e1071_1.7-1
## [16] ModelMetrics_1.2.2 pillar_1.3.1 glue_1.3.1
## [19] withr_2.1.2 networkD3_0.4 foreach_1.4.4
## [22] plyr_1.8.4 lava_1.6.5 stringr_1.4.0
## [25] timeDate_3043.102 munsell_0.5.0 gtable_0.3.0
## [28] htmlwidgets_1.3 recipes_0.1.5 codetools_0.2-16
## [31] evaluate_0.13 labeling_0.3 knitr_1.22
## [34] caret_6.0-84 class_7.3-15 Rcpp_1.0.1
## [37] scales_1.0.0 BiocManager_1.30.4 ipred_0.9-9
## [40] jsonlite_1.6 scatterplot3d_0.3-41 gridExtra_2.3
## [43] ggplot2_3.1.1 digest_0.6.18 stringi_1.4.3
## [46] Rtsne_0.15 ggrepel_0.8.0 bookdown_0.9
## [49] dplyr_0.8.0.1 grid_3.6.0 tools_3.6.0
## [52] magrittr_1.5 lazyeval_0.2.2 tibble_2.1.1
## [55] crayon_1.3.4 pkgconfig_2.0.2 MASS_7.3-51.4
## [58] Matrix_1.2-17 data.table_1.12.2 lubridate_1.7.4
## [61] gower_0.2.0 assertthat_0.2.1 rmarkdown_1.12
## [64] iterators_1.0.10 R6_2.4.0 rpart_4.1-15
## [67] igraph_1.2.4.1 nnet_7.3-12 nlme_3.1-139
## [70] compiler_3.6.0