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

up #6

Merged
merged 4 commits into from
Jan 7, 2024
Merged

up #6

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ RUN Rscript -e 'remotes::install_github("Yuchun-Zhang/R_largeList", ref = "v0.3.
RUN apt-get update && apt-get install -y libtcl libtk

RUN Rscript -e 'remotes::install_github("mmollina/mappoly")'
RUN Rscript -e 'remotes::install_github("Cristianetaniguti/Reads2MapApp", ref = "5ef4c306fcf7425138592807eae806feb54cd08b")'
RUN Rscript -e 'remotes::install_github("Cristianetaniguti/Reads2MapApp" )'

EXPOSE 80
CMD ["R", "-e", "options('shiny.port'=80,shiny.host='0.0.0.0');Reads2MapApp::run_app()"]

3 changes: 2 additions & 1 deletion R/graphics_emp.R
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ prepare_datas_emp <- function(x = NULL, example_emp = NULL){
software <- "onemap"
for_rm <- sapply(list_files, "[", -grep("sequences",datas))

datas <- lapply(datas,function(x) gsub("/$", "", x))

# Support to several versions
if(length(grep("sequences",datas)) > 1){
temp_dat <- list()
Expand Down Expand Up @@ -277,4 +279,3 @@ SNPCalling_efficiency_graph_emp <- function(data, data_names){
scale_color_grey() + scale_fill_viridis_c() + theme_bw() + coord_sf(clip = "off")
}


2 changes: 2 additions & 0 deletions R/graphics_poly_emp.R
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ prepare_poly_datas_emp <- function(x = NULL, example_emp = NULL){
datas[[i]] <- sapply(list_files, "[", i)
}

datas <- lapply(datas,function(x) gsub("/$", "", x))

software <- "mappoly"
datas <- unlist(datas)
list_items <- c("dat", "mat2", "maps", "summaries", "info")
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

## Reads2Map App

This shiny app plots graphics for descriptive analyses of the datasets generated by the [Reads2Map workflow](https://github.com/Cristianetaniguti/Reads2Map) workflows. Upload your results in the `Upload data` session.
This shiny app plots graphics for descriptive analyses of the datasets generated by the [Reads2Map ](https://github.com/Cristianetaniguti/Reads2Map) workflows. Upload your results in the `Upload data` session.

Each icon at the left corner of this page points to a different dataset and produces interactive plots.

Expand Down
Loading