Nothing
SignatureDistance <-
function(exprSet,SignatureLength,MergingDistance=c("Spearman", "Kendall"),
ScoringMethod=c("GSEA","PGSEA"),ScoringDistance=c("avg","max"),weighted=TRUE,...){
MergingDistance=match.arg(MergingDistance, c("Spearman", "Kendall"))
ScoringMethod=match.arg(ScoringMethod,c("GSEA","PGSEA"))
ScoringDistance=match.arg(ScoringDistance,c("avg","max"))
MergedRank=RankMerging(exprSet,MergingDistance,weighted)
if (ScoringMethod=="GSEA")
return(ScoreGSEA(MergedRank,SignatureLength,ScoringDistance,...))
else
return(ScorePGSEA(MergedRank,SignatureLength,ScoringDistance,...))
}
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.