Skip to content

Commit

Permalink
Addressed EpiCompare Windows bug. Explicitly specify type in the shQu…
Browse files Browse the repository at this point in the history
…ote command in report_header.r
  • Loading branch information
Tomrrr1 committed Feb 13, 2024
1 parent 997e1a1 commit efb099e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Type: Package
Package: EpiCompare
Title: Comparison, Benchmarking & QC of Epigenomic Datasets
Version: 1.7.2
Version: 1.7.3
Authors@R: c(
person(given = "Sera", family = "Choi",
email = "serachoi1230@gmail.com",
Expand Down
10 changes: 7 additions & 3 deletions R/report_header.R
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,21 @@
report_header <- function(){
paste0(
"<div class='report-header'>",
"<a href=",shQuote("https://github.com/neurogenomics/EpiCompare"),
"<a href=",shQuote("https://github.com/neurogenomics/EpiCompare", type = "sh"),
" target='_blank'>",
"<code>EpiCompare</code>",
"</a>",
"<code>Report</code>",
"<a href=",shQuote("https://doi.org/doi:10.18129/B9.bioc.EpiCompare"),
"<a href=",shQuote("https://doi.org/doi:10.18129/B9.bioc.EpiCompare", type = "sh"),
" target='_blank'>",
"<img src=",
shQuote(system.file('hex','hex.png',package = 'EpiCompare')),
shQuote(system.file('hex','hex.png',package = 'EpiCompare'), type = "sh"),
" height='100'",">",
"</a>",
"</div>"
)
}




0 comments on commit efb099e

Please sign in to comment.