Entering edit mode
yangwanqi
•
0
@6e5d153a
Last seen 5.0 years ago
# tppData <- readRDS("../data/tppData.Rds")
sessionInfo( )
Please help us to know how to convert the TPP result to a "tidy format".

A first comment upfront: It would have been hard for me to understand your question without the email you've sent before. To clarify: the problem is concerning the conversion of the
ExpressionSetstructure obtained after data import of a "Thermal proteome profiling" experiment using theTPPpackage and then converting this to a long format data frame which theNPARCpackage needs as input. (https://bioconductor.org/packages/release/bioc/vignettes/NPARC/inst/doc/NPARC.html)Secondly, it would help if you also post the out put appearing in your console upon typing
sessionInfo().Assuming you have imported data using the functions from the
TPPpackage similar to:you can convert the obtained
ExpressionSetinto a long format data frame by using the Bioconductor packagebiobroom:This results in the following data frame:
To adapt the column names to match the ones from the
NPARCexample:you can now use
dplyr:Based on this data frame you should be able to perform the
NPARCanalysis as described in the vignette.