Description Usage Arguments Value Examples
Submit job using the guildifyR query result table
1 2 | submit.job(result.table, species, tissue, network.source,
scoring.options = list(netcombo = T))
|
species |
Species tax identifier (9606: human, 10090: mouse, etc., see get.species.info method) |
tissue |
Tissue identifier (all, liver, lung, etc., see get.species.info method) |
network.source |
Interaction network source (BIANA, STRING, HIPPIE, etc.) |
scoring.options |
Prioritization method options (default NetCombo) |
query.table |
Data frame contaning information from guildifyR query (user entitiy info, network info, source etc...) |
job id
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | species="10090"
tissue="all"
network.source="BIANA"
result.table = query("alzheimer", species, tissue, network.source)
#Diamond
scoring.options = list(diamond=T)
#NetScore
scoring.options = list(netscore=T, repetitionSelector=3, iterationSelector=2)
#NetZcore
scoring.options = list(netzcore=T, repetitionZelector=3)
#NetShort
scoring.options = list(netshort=T)
#NetCombo
scoring.options = list(netcombo=T)
job.id = submit.job(result.table, species, tissue, network.source, scoring.options)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.