Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

initial lunch of Scaffold #7

Open
mvetill opened this issue Sep 28, 2017 · 2 comments
Open

initial lunch of Scaffold #7

mvetill opened this issue Sep 28, 2017 · 2 comments

Comments

@mvetill
Copy link

mvetill commented Sep 28, 2017

Hi,
I succesfully installed scaffold on my windows 7 computer but it is impossible to run the script since when I choose a fcs file from a fcs file folder, an error message appears. Can it be a R3.4.1-R studio incompatibility with the script?

error message

@SamGG
Copy link

SamGG commented Sep 28, 2017

Hi,
I have also got a Windows 7 64 bits and the same version of shiny package, but I am using R 3.3.3. I don't think R version should make a difference. Be sure to use the latest version of Firefox (55.0.3 (32 bits) in my case). Check that the FCS file is readable, and that the directory of the FCS file is writable. Try any tiny shiny application example as below.
HTH

server <- function(input, output) {
    working.directory <- dirname(file.choose())
    output$distPlot <- renderPlot({
        hist(rnorm(input$obs), col = 'darkgray', border = 'white')
    })
}

ui <- fluidPage(
    sidebarLayout(
        sidebarPanel(
            sliderInput("obs", "Number of observations:", min = 10, max = 500, value = 100)
        ),
        mainPanel(plotOutput("distPlot"))
    )
)

shinyApp(ui = ui, server = server, options = list(launch.browser = TRUE))

@pfgherardini
Copy link
Collaborator

Did you manage to solve the problem?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants