Hi,
I'm new to R and I'm facing some problems.
I'm trying to install FlowCore and FlowTrack and it's not working.
I manage to run FlowCore:
> pkg <- "/private/var/folders/7h/h3fq1kf54rjgs6v_l6jhbjcc0000gn/T/RtmpJGC7dK/downloaded_packages/flowCore_1.34.3.tgz"
> install.packages(pkg, repos=NULL, type="source")
* installing *binary* package ‘flowCore’ ...
* DONE (flowCore)
> library(flowCore)
> data(GvHD)
> class(GvHD)
[1] "flowSet"
attr(,"package")
[1] "flowCore"
> GvHD
A flowSet with 35 experiments.
An object of class 'AnnotatedDataFrame'
rowNames: s5a01 s5a02 ... s10a07 (35 total)
varLabels: Patient Visit ... name (5 total)
varMetadata: labelDescription
column names:
FSC-H SSC-H FL1-H FL2-H FL3-H FL2-A FL4-H Time
but then
tmixGate <- tmixFilter(parameters=c("FSC-H","SSC-H"), K=1)
Error: could not find function "tmixFilter"
> biocLite("flowTrack")
BioC_mirror: http://bioconductor.org
Using Bioconductor version 3.1 (BiocInstaller 1.18.2), R version 3.2.0.
Installing package(s) ‘flowTrack’
Warning message:
package ‘flowTrack’ is not available (for R version 3.2.0)
> packageVersion('mgcv')
[1] ‘1.8.6
when I check in the the /download_packages folder I have no flowTrack_x file at all...
I really appreciate if you could help me sorting this out.
Thanks,
Angela
'tmixFilter' belongs to 'flowClust' package and you need to install that using 'biocLite' as Dan suggested.