Nothing
GetNg<- function(IsoformName, GeneName, TrunThre=3){
if(length(IsoformName)!=length(GeneName))stop("The length of IsoformName is not the same as the length of GeneName")
GeneNg = tapply(IsoformName, GeneName, length)
if(max(GeneNg)<TrunThre)stop("The max Ng is less than the TrunThre")
IsoformNg = GeneNg[GeneName]
names(IsoformNg) = IsoformName
GeneNgTrun=GeneNg
GeneNgTrun[GeneNgTrun>TrunThre]=TrunThre
IsoformNgTrun=IsoformNg
IsoformNgTrun[IsoformNgTrun>TrunThre]=TrunThre
out=list( GeneNg=GeneNg, GeneNgTrun=GeneNgTrun, IsoformNg=IsoformNg, IsoformNgTrun=IsoformNgTrun)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.