-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
151 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
2018-08-16 Li Jianfeng <[email protected]> | ||
|
||
* add pubmed search tool | ||
* add geoquery instant plugin | ||
* improve instant spack and code plugins | ||
|
||
2018-08-15 Li Jianfeng <[email protected]> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Package: BioInstaller | ||
Title: Integrator of Bioinformatics Resources | ||
Version: 0.3.5.4000 | ||
Version: 0.3.5.5000 | ||
Authors@R: person("Jianfeng", "Li", email = "[email protected]", role = c("aut", "cre"), comment = c(ORCID = "0000-0003-2349-208X")) | ||
Maintainer: Jianfeng Li <[email protected]> | ||
Description: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,63 @@ | ||
[conda.ui.sections] | ||
order = ["readfiles", "outputFields"] | ||
order = ["conda_input_box", "conda_output_box_text", "conda_output_box_table"] | ||
[conda.ui.sections.ui_basic] | ||
readfiles = "title = 'Input', status = 'primary', width = 12, collapsed = FALSE, collapsible = TRUE" | ||
outputFields = "title = 'Output of conda', status = 'primary', width = 12, collapsed = FALSE, collapsible = TRUE" | ||
conda_input_box = "title = 'Input', status = 'primary', width = 12, collapsed = FALSE, collapsible = TRUE" | ||
conda_output_box_text = "title = 'Output of conda (Text)', status = 'primary', width = 12, collapsed = FALSE, collapsible = TRUE" | ||
conda_output_box_table = "title = 'Output of conda (Table)', status = 'primary', width = 12, collapsed = FALSE, collapsible = TRUE" | ||
|
||
[conda.paramters.readfiles] | ||
[conda.paramters.conda_input_box] | ||
# For reading annovarR shiny APP conda tool input files | ||
section_type = "input" | ||
rcmd_last = """ | ||
""" | ||
progressbar_message = "Running conda functions." | ||
render_id = "conda_readfiles" | ||
render_id = "conda_input_box" | ||
|
||
#!!!!! input_ui_order required related section | ||
input_ui_order = ["start_analysis"] | ||
input_ui_order = ["single_input", "start_analysis"] | ||
|
||
[conda.paramters.readfiles.input.start_analysis] | ||
[conda.paramters.conda_input_box.input.single_input] | ||
title = "Parameters:" | ||
title_control = "class = 'input-section-p'" | ||
varname = ["conda_sub_cmd", "conda_env_name", "conda_params"] | ||
input_id = ["input_conda_1", "input_conda_2", "input_conda_3"] | ||
type = ["shiny::selectInput", "shiny::selectInput", "shiny::textInput"] | ||
label = ["Conda subcommands", "Conda environment", "Conda parameters"] | ||
|
||
[conda.paramters.conda_input_box.input.single_input.choices] | ||
conda_sub_cmd = ["clean", "config", "create", "info", "install", | ||
"list", "package", "remove", "uninstall", | ||
"search", "update", "upgrade"] | ||
conda_env_name = "!!glue {BioInstaller::conda.env.list()[,1]}" | ||
[conda.paramters.conda_input_box.input.single_input.selected] | ||
conda_sub_cmd = "list" | ||
conda_env_name = "base" | ||
|
||
[conda.paramters.conda_input_box.input.start_analysis] | ||
input_id = "start_conda_analysis" | ||
type = "shiny::actionButton" | ||
label = "Run" | ||
|
||
[conda.paramters.outputFields] | ||
[conda.paramters.conda_output_box_text] | ||
section_type = "output" | ||
rcmd_last = "BioInstaller::conda.list()" | ||
rcmd_last = """ | ||
conda_env_cmd <- sprintf("source activate %s;", conda_env_name) | ||
conda_params <- sprintf("%s %s", conda_sub_cmd, conda_params) | ||
cat(conda(conda_params, conda_env_cmd)) | ||
""" | ||
render_type = "shiny::renderPrint" | ||
render_id = "conda_output" | ||
output_type = "shiny::verbatimTextOutput" | ||
progressbar_message = "conda ouput" | ||
progressbar_message = "conda ouput_box_text" | ||
|
||
[conda.paramters.conda_output_box_table] | ||
section_type = "output" | ||
rcmd_last = """ | ||
if (conda_sub_cmd == 'list') | ||
conda.list(conda_env_name) | ||
""" | ||
render_type = "DT::renderDataTable" | ||
render_id = "conda_output_table" | ||
output_type = "DT::dataTableOutput" | ||
progressbar_message = "conda ouput_box_table" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
[geoquery.ui.sections] | ||
order = ["geoquery_input_box", "geoquery_output_text_1", "geoquery_output_table_1"] | ||
[geoquery.ui.sections.ui_basic] | ||
geoquery_input_box = "title = 'Input', status = 'primary', width = 12, collapsed = FALSE, collapsible = TRUE" | ||
geoquery_output_text_1 = "title = 'Output of geoquery', status = 'primary', width = 12, collapsed = FALSE, collapsible = TRUE" | ||
geoquery_output_table_1 = "title = 'Output of geoquery (Table)', status = 'primary', width = 12, collapsed = FALSE, collapsible = TRUE" | ||
|
||
[geoquery.paramters.geoquery_input_box] | ||
# For reading annovarR shiny APP geoquery tool input files | ||
section_type = "input" | ||
rcmd_last = """ | ||
gds <- "" | ||
gsm <- "" | ||
if (gds_file != "") gds <- getGEO(filename=gds_file) | ||
if (gsm_file != "") gsm <- getGEO(filename=gsm_file) | ||
""" | ||
progressbar_message = "Running geoquery functions." | ||
render_id = "geoquery_input_box" | ||
|
||
#!!!!! input_ui_order required related section | ||
input_ui_order = ["single_input", "start_analysis"] | ||
|
||
[geoquery.paramters.geoquery_input_box.input.single_input] | ||
title = "Parameters:" | ||
title_control = "class = 'input-section-p'" | ||
varname = ["gds_file", "gsm_file"] | ||
input_id = ["input_geoquery_1", "input_geoquery_2"] | ||
type = ["shiny::selectInput", "shiny::selectInput"] | ||
label = ["GDS File", "GSE File"] | ||
|
||
[geoquery.paramters.geoquery_input_box.input.single_input.choices] | ||
gds_file = "!!glue {c(system.file('extdata', 'GDS507.soft.gz', package = 'GEOquery'), featch_files()$file_path, '')}" | ||
gsm_file = "!!glue {c(system.file('extdata', 'GSM11805.txt.gz', package = 'GEOquery'), featch_files()$file_path, '')}" | ||
[geoquery.paramters.geoquery_input_box.input.single_input.selected] | ||
gds_file = "" | ||
gsm_file = "" | ||
|
||
[geoquery.paramters.geoquery_input_box.input.start_analysis] | ||
input_id = "start_geoquery_analysis" | ||
type = "shiny::actionButton" | ||
label = "Run" | ||
|
||
[geoquery.paramters.geoquery_output_text_1] | ||
section_type = "output" | ||
rcmd_last = "head(Meta(gsm))" | ||
render_type = "shiny::renderPrint" | ||
render_id = "geoquery_output_text_1" | ||
output_type = "shiny::verbatimTextOutput" | ||
progressbar_message = "GEOquery geoquery_output_text_1" | ||
|
||
[geoquery.paramters.geoquery_output_table_1] | ||
section_type = "output" | ||
rcmd_last = """ | ||
Table(gsm) | ||
""" | ||
render_type = "DT::renderDataTable" | ||
render_id = "geoquery_output_table_1" | ||
output_type = "DT::dataTableOutput" | ||
progressbar_message = "GEOquery geoquery_output_table_1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters