Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .codeocean/app-panel.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"categories": [
{
"id": "gDLmTU36PrmD13RK",
"name": "Input Data Parameters",
"name": "Basic",
"description": "Options for defining input data",
"icon": "📁"
}
Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CodeOcean Capsule - MOSuite - create multiOmicDataset

## Development version

- Improved the Code Ocean parameter UI for the create capsule (#11, @phoman14).

## v7.0

- Throw a warning if multiple counts files or metadata files are found matching the patterns. (#6, @kelly-sovacool)
Expand Down Expand Up @@ -39,4 +43,4 @@ This release is identical to v1.0, except it is a Standard app rather than a No-

First release of MOSuite-create as a No-Code app.

<https://poc-nci.codeocean.io/capsule/6541445/tree/v1> (`a332cc8`)
<https://poc-nci.codeocean.io/capsule/6541445/tree/v1> (`a332cc8`)
4 changes: 2 additions & 2 deletions code/main.R
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ parser$add_argument(
args <- parser$parse_args()

# find input files
regex_count = args$regex_count
regex_sample = args$regex_sample
regex_count <- args$regex_count
regex_sample <- args$regex_sample
data_dir <- "../data"
data_files <- list.files(
file.path(data_dir),
Expand Down
Loading