Skip to content
This repository has been archived by the owner on Mar 10, 2023. It is now read-only.

Commit

Permalink
Merge pull request #27 from openproblems-bio/switch_to_json
Browse files Browse the repository at this point in the history
switch to json to align with v1
  • Loading branch information
rcannood authored Dec 19, 2022
2 parents a117e62 + 41209fa commit cec4711
Show file tree
Hide file tree
Showing 42 changed files with 10,375 additions and 4,881 deletions.
8 changes: 8 additions & 0 deletions _quarto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,14 @@ website:
- results_v2/denoising/metrics.qmd
- results_v2/denoising/api.qmd
- results_v2/denoising/normalization.qmd
- text: Dimensionality reduction
contents:
- href: results_v2/dimensionality_reduction/index.qmd
text: Description
- results_v2/dimensionality_reduction/methods.qmd
- results_v2/dimensionality_reduction/metrics.qmd
- results_v2/dimensionality_reduction/api.qmd
- results_v2/dimensionality_reduction/normalization.qmd
- text: Label projection
contents:
- href: results_v2/label_projection/index.qmd
Expand Down
10 changes: 5 additions & 5 deletions results_v2/denoising/api.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ strip_margin <- function(text, symbol = "\\|") {
dir <- "results_v2/label_projection"
dir <- "."
api <- yaml::read_yaml(paste0(dir, "/api.yaml"))
api <- jsonlite::read_json(paste0(dir, "/data/api.json"), simplifyVector = TRUE)
comp_file <- map_df(api$comp_file_io, as_tibble)
comp_info <- map_df(api$comp_info, as_tibble)
file_info <- map_df(api$file_info, as_tibble)
file_slot <- map_df(api$file_schema, as_tibble)
comp_file <- api$comp_file_io
comp_info <- api$comp_info
file_info <- api$file_info
file_slot <- api$file_schema
```


Expand Down
166 changes: 0 additions & 166 deletions results_v2/denoising/api.yaml

This file was deleted.

Loading

0 comments on commit cec4711

Please sign in to comment.