- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在为 R 函数开发 shiny webtool,以在 webtool 上生成索引结果。
我有 6 个 R 函数,我在 selectinput 小部件中创建了 6 个组合,其中每个组合都与一个 R 函数相关联。
6个R函数如下:
RSCU(文件){脚本},
cgr_res(文件){脚本},
zscore_cal(文件){脚本},
GC_Content7(文件){}和
extractmod(file){script} 所有这 5 个函数都有一个相同的参数,即输入文件作为所有五个 R 函数的相同输入参数最后一个 R 函数是第 6 个 R 函数,有 AMIP(file,n1,n2) 3 个输入参数,这里输入文件与剩余 5 个相同,但 n1 和 n2 是不同的参数,对于 n1 和 n2 参数,我创建了 numericalInput() 小部件。对于 GC_content7、RSCU、cgr_res 和 zscore_cal,webtool 工作正常但对于其他两个函数没有显示结果。
library("shinythemes")
library("shiny")
library("htmltools")
library("bsplus")
library("DT")
library("shinyalert")
library("shinyjs")
library("shinycssloaders")
library("dplyr")
library("data.table")
library("reshape2")
library("ggplot2")
library("plotly")
library("tools")
library("readxl")
library("writexl")
library("seqinr")
library("Biostrings")
library("BiocManager")
library("entropy")
library("protr")
source("GS_Source.R")
ui = fluidPage(
headerPanel(
h1(tags$strong("Welcome to Web based Tool for Computation of Genomic"),
style = "font-size: 20pt; line-height: 30pt; width = 100; color: #Red",
align = "center"),
windowTitle = "Home"),
sidebarLayout(
sidebarPanel(
style = "background-color: #E52B50;",
tags$style(type='text/css',
"label { font-size: 12px; }",
".selectize-input { font-size: 12pt; line-height: 12pt;},
.selectize-dropdown { font-size: 12pt; line-height: 12pt; }"),
fileInput('file', HTML('<p style="color:#4A2768; font-size: 12pt"> Choose file to upload the expression data </p>'),accept = c('text/csv','text/comma-separated-values',
'text/tab-separated-values','text/plain','.csv', '.tsv','.fasta')),
selectInput("Signatures", HTML('<p style="color:#4A27C5; font-size: 12pt"> Genome signature </p>'),
c("GC-content","RSCU","CGR","DI-nuculeotide odd Ratio","AAC","AMIP")),
numericInput("num1",label = "FROM",value = 2),
numericInput("num2", label = "TO", value = 3),
useShinyalert(),
actionButton("action", tags$b("Submit")), width = 3, style="color: #fff; background-color: #337ab7; border-color: #2e6da4"),
mainPanel(
verbatimTextOutput("res1"),
verbatimTextOutput("res2"),
plotOutput("res3"),
verbatimTextOutput("res4"),
verbatimTextOutput("res5"),
verbatimTextOutput("res6"),
)
)
)
server <- function(input, output, session) {
df <- eventReactive(input$action, {
my_func <- switch(input$Signatures,
"RSCU" = RSCU,
"CGR"=cgr_res,
"DI-nuculeotide odd Ratio"=zscore_cal,
"GC-content" = GC_content7,
"AAC"=extractAAC_mod,
)
my_func(input$file$datapath)
})
df1 <- eventReactive(input$actions, {
my_func1 <- switch(input$signatures,
"AMIP"=AMIP,
)
my_func1(input$file$datapath,input$num1,input$num2)
})
output$res1 <- renderPrint({
req(input$Signatures)
if (input$Signatures=="GC-content") {
df()
}
})
output$res2 <- renderPrint({
req(input$Signatures)
if (input$Signatures=="RSCU") {
df()
}
})
output$res3 <- renderPlot({
req(input$Signatures)
if (input$Signatures=="CGR") {
df()
}
})
output$res4 <- renderPrint({
req(input$Signatures)
if (input$Signatures=="DI-nuculeotide odd Ratio") {
df()
}
})
output$res5 <- renderPrint({
req(input$Signatures)
if (input$Signatures=="AAC") {
df()
}
})
output$res6 <- renderPrint({
req(input$signatures)
if(input$signatures=="AMIP"){
df1()
}
})
observeEvent(input$action, {
shinyalert(title = "Please wait for the results...", type = "success")
})
}
shinyApp(ui, server)
最佳答案
不能在 renderText
中返回列表。您可以使用 renderPrint
代替 renderText
,使用 verbatimTextOutput
代替 textOutput
。
关于r - 警告 : Error in cat: argument 1 (type 'list' ) cannot be handled by 'cat' [No stack trace available] in R shiny webtool,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62814804/
例如,如果我的程序名称是 test.c 然后对于以下运行命令,argc = 2 而不是 4。 $test abc pqr* *xyz* 最佳答案 尝试运行: $ echo abc pqr* *xyz*
我正在尝试使用一个容器来显示TextField,但是该容器不喜欢我的操作顺序。这是我的代码: Widget build(BuildContext context) { return Scaffol
我有以下代码: class MetricGoogleGateway extends AMetricGateway{ constructor(id, name, token) {
我像这样调用下面的对象方法。 new Cout( elem1 ).load( 'body' ) new COut( elem1 ).display( 'email' ) 我一次只使用一个实例。因为我一
我正在尝试使用 C++11 中的可变参数函数模板,并通过如下代码了解了基本思想: void helper() { std::cout void helper( T&& arg ) {
在学习 ExtJS 4 时,我发现在定义一个新类时,在 initComponent 中方法可以使用 this.callParent(arguments) 调用父类的构造函数. 我想知道这个 argum
使用 XCode 9,Beta 3。Swift 4。 statsView.createButton("Button name") { [weak self] Void in //stuff st
以下代码将打印1: (function (arguments) { console.log(arguments); }(1, 2)); 实际上,arguments 对象已被覆盖。是否可以恢复函
/** * @param $name * @return Response * @Route ("/afficheN/{name}",name="afficheN") */ public fu
我习惯使用Scala scopt用于命令行选项解析。您可以选择参数是否为 .required()通过调用刚刚显示的函数。 如何定义仅在定义了另一个参数时才需要的参数? 例如,我有一个标志 --writ
所以这是我的代码: def is_valid_move(board, column): '''Returns True if and only if there is an o
我试图在这里运行此代码: threads = [threading.Thread(name='ThreadNumber{}'.format(n),target=SB, args(shoe_type,m
在静态类型函数编程语言(例如 Standard ML、F#、OCaml 和 Haskell)中,编写函数时通常将参数彼此分开,并通过空格与函数名称分开: let add a b = a + b
function validateArguments(args) { if(args.length 2) { throw new RangeError("Invalid amo
我正在使用 Django 1.5 并尝试将参数传递到我的 URL。当我使用前两个参数时,下面的代码工作正常,使用第三个参数时我收到错误。我已经引用了新的 Django 1.5 更新中的 url 用法,
我刚刚开始使用 ember js 并且多次被这个功能绊倒 有人可以简要介绍一下 this._super() 的使用,并解释 ...arguments 的重要性 谢谢 最佳答案 每当您覆盖类/函数(例如
这个问题在这里已经有了答案: How to fix an "Argument passed to call that takes no arguments" error? (2 个答案) 关闭 3
我正在创建一个简单的登录注册应用程序。但是我遇到了错误,我不知道如何解决,请帮忙!这是我的代码: // // ViewController.swift // CHLogbook-Applicati
我是 Swift 的初学者。我尝试创建一个表示 Meal 的简单类。 它有一些属性和一个返回可选的构造函数 但是当我尝试测试它或在任何地方实例化它时,我得到的只是一个错误。似乎无法弄清楚发生了什么。
我有一个在特殊环境下运行其他程序的系统程序: cset shield -e PROGRAM .现在要运行一个 java 程序,我输入了 cset shield -e java PROGRAM ,但这不
我是一名优秀的程序员,十分优秀!