View source: R/canwefluxitup.R
canwefluxitup | R Documentation |
This function makes sure that your arguments are formatted correctly. You can call it, but it is also called within fluximplied().
canwefluxitup(
inputdat = inputdat,
species = species,
geneformat = geneformat,
padjcolname = padjcolname,
LFCcolname = LFCcolname,
pcutoff = pcutoff
)
inputdat |
what you are using as your input data, either a data frame with genes as the rownames, a column for LFC, and a column for padj values |
species |
either mus or hsa |
geneformat |
either ENTREZ or symbol |
padjcolname |
the name of the column in your data frame, if applicable, that stores the padj values |
LFCcolname |
the name of the column in your data frame, if applicable, that stores the Log Fold Change values |
pcutoff |
the alpha threshold for your padjustadjust |
It should stop and print out what is wrong with your inputs if anything.
canwefluxitup(inputdat=exampleData,
species='mmu',
geneformat='SYMBOL',
padjcolname='adj_pvalue',
LFCcolname='Log2FoldChange',
pcutoff=0.05)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.