Skip to content

Commit

Permalink
Finish Hotfix-logo
Browse files Browse the repository at this point in the history
  • Loading branch information
julienleroux5 committed Oct 17, 2024
2 parents 82366fd + 451c50b commit 700ec74
Show file tree
Hide file tree
Showing 11 changed files with 32 additions and 3 deletions.
7 changes: 6 additions & 1 deletion R/convert_one_sample_data.R
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,12 @@ collect_one_sample_data <- function(sample_id, connection_params = NULL, num_spe
numLogicalSpectra = numSpectra * 200
message(glue::glue("Number of spectra to download: {numSpectra}"))
chunkSize = 500 #default value in msconvert = 20
nchunks = ceiling(numSpectra / chunkSize)
if (numSpectra > chunkSize) {
nchunks = ceiling(numSpectra / chunkSize)
} else {
nchunks = 1
chunkSize = numSpectra
}
# nchunks = 5
skip = 0
skips = list()
Expand Down
2 changes: 1 addition & 1 deletion README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ knitr::opts_chunk$set(
)
```

# 🏹 arcMS
# 🏹 arcMS <a href="https://leesulab.github.io/arcMS/"><img src="man/figures/logo.png" align="right" height="138" alt="arcMS website" /></a>

<!-- badges: start -->

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

# 🏹 arcMS
# 🏹 arcMS <a href="https://leesulab.github.io/arcMS/"><img src="man/figures/logo.png" align="right" height="138" alt="arcMS website" /></a>

<!-- badges: start -->
<!-- badges: end -->
Expand Down
Binary file added man/figures/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added pkgdown/favicon/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added pkgdown/favicon/favicon-48x48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added pkgdown/favicon/favicon.ico
Binary file not shown.
3 changes: 3 additions & 0 deletions pkgdown/favicon/favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 21 additions & 0 deletions pkgdown/favicon/site.webmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"name": "",
"short_name": "",
"icons": [
{
"src": "/web-app-manifest-192x192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "maskable"
},
{
"src": "/web-app-manifest-512x512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "maskable"
}
],
"theme_color": "#ffffff",
"background_color": "#ffffff",
"display": "standalone"
}
Binary file added pkgdown/favicon/web-app-manifest-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added pkgdown/favicon/web-app-manifest-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 700ec74

Please sign in to comment.