Skip to content

Commit 242f596

Browse files
author
m.jiang
committed
merge from git
git-svn-id: https://hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/openCyto@86108 bc3139a8-67e5-0310-9ffc-ced21a209358
0 parents  commit 242f596

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+6782
-0
lines changed

.Rbuildignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
^.*\.Rproj$
2+
^\.Rproj\.user$

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
src/*.o
2+
src/*.so
3+
.Rproj.user
4+
*.Rproj
5+
.Rhistory

DESCRIPTION

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
Package: openCyto
2+
Type: Package
3+
Title: Hierarchical Gating Pipeline for flow cytometry data
4+
Version: 1.1.9
5+
Date: 2012-06-10
6+
Author: Mike Jiang, John Ramey, Greg Finak, Raphael Gottardo
7+
Maintainer: Mike Jiang <[email protected]>
8+
Description: This package is designed to facilitate the automated gating
9+
methods in sequential way to mimic the manual gating strategy.
10+
License: Artistic-2.0
11+
LazyLoad: yes
12+
Collate:
13+
'AllGenerics.R'
14+
'AllClasses.R'
15+
'bayes-flowClust.R'
16+
'functions.R'
17+
'gating-methods.R'
18+
'gating-functions.R'
19+
'gatingTemplate-methods.R'
20+
'gtMethod-methods.R'
21+
'gtPopulation-methods.R'
22+
'fcFilterList-methods.R'
23+
'fcTree-methods.R'
24+
'fcFilter-methods.R'
25+
'wrapper-functions.R'
26+
'preprocessing-method.R'
27+
'pluginFramework.R'
28+
'unlockNamespace.R'
29+
Depends:
30+
methods,flowWorkspace (>= 3.9.47)
31+
Imports:
32+
Biobase,gtools,flowCore,flowStats,flowClust,MASS,clue,plyr,RBGL,Rgraphviz,graph,data.table,ks,RColorBrewer,lattice,rrcov,R.utils
33+
Suggests:
34+
flowWorkspaceData (>= 1.99.12),
35+
knitr
36+
biocViews: FlowCytometry, DataImport, Preprocessing, DataRepresentation
37+
#Enhances: flowDensity
38+
VignetteBuilder: knitr

NAMESPACE

+77
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
export(.between_interval)
2+
export(cytokine)
3+
export(flowClust.1d)
4+
export(flowClust.2d)
5+
export(listgtMethods)
6+
export(mindensity)
7+
export(prior_flowClust)
8+
export(registerGatingFunction)
9+
export(tailgate)
10+
export(templateGen)
11+
exportClasses(gatingTemplate)
12+
exportClasses(gtMethod)
13+
exportClasses(gtPopulation)
14+
exportClasses(ppMethod)
15+
exportMethods(alias)
16+
exportMethods(dims)
17+
exportMethods(gating)
18+
exportMethods(gatingTemplate)
19+
exportMethods(getChildren)
20+
exportMethods(getGate)
21+
exportMethods(getNodes)
22+
exportMethods(getParent)
23+
exportMethods(groupBy)
24+
exportMethods(isCollapse)
25+
exportMethods(names)
26+
exportMethods(parameters)
27+
exportMethods(plot)
28+
exportMethods(ppMethod)
29+
exportMethods(show)
30+
import(flowWorkspace)
31+
import(utils)
32+
importClassesFrom(Biobase,AssayData)
33+
importClassesFrom(flowCore,filterList)
34+
importClassesFrom(flowCore,polygonGate)
35+
importClassesFrom(flowCore,rectangleGate)
36+
importClassesFrom(graph,graph)
37+
importClassesFrom(graph,graphBase)
38+
importClassesFrom(graph,graphNEL)
39+
importClassesFrom(rrcov,Ulist)
40+
importClassesFrom(rrcov,Uvector)
41+
importFrom(Biobase,dims)
42+
importFrom(clue,solve_LSAP)
43+
importFrom(data.table,fread)
44+
importFrom(flowClust,dmvt)
45+
importFrom(flowClust,dmvtmix)
46+
importFrom(flowClust,filter)
47+
importFrom(flowClust,getEstimates)
48+
importFrom(flowClust,rbox)
49+
importFrom(flowClust,tmixFilter)
50+
importFrom(flowStats,quadrantGate)
51+
importFrom(flowStats,rangeGate)
52+
importFrom(flowStats,singletGate)
53+
importFrom(flowStats,warpSet)
54+
importFrom(graph,"edgeData<-")
55+
importFrom(graph,"edgeDataDefaults<-")
56+
importFrom(graph,"nodeData<-")
57+
importFrom(graph,"nodeDataDefaults<-")
58+
importFrom(graph,addEdge)
59+
importFrom(graph,edgeData)
60+
importFrom(graph,edgeDataDefaults)
61+
importFrom(graph,edges)
62+
importFrom(graph,graphNEL)
63+
importFrom(graph,inEdges)
64+
importFrom(graph,nodeData)
65+
importFrom(graph,nodeDataDefaults)
66+
importFrom(graph,subGraph)
67+
importFrom(gtools,permutations)
68+
importFrom(ks,drvkde)
69+
importFrom(ks,hpi)
70+
importFrom(MASS,huber)
71+
importFrom(plyr,aaply)
72+
importFrom(plyr,laply)
73+
importFrom(plyr,ldply)
74+
importFrom(R.utils,isPackageInstalled)
75+
importFrom(RBGL,tsort)
76+
importFrom(RColorBrewer,brewer.pal)
77+
useDynLib(openCyto)

0 commit comments

Comments
 (0)