Skip to content

Commit d476676

Browse files
authored
Initial commit
0 parents  commit d476676

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+2035
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: [bug]
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behavior:
15+
1. Go to '...'
16+
2. Click on '....'
17+
3. Scroll down to '....'
18+
4. See error
19+
20+
**Expected behavior**
21+
A clear and concise description of what you expected to happen.
22+
23+
**Additional context**
24+
Add any other context about the problem here.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
blank_issues_enabled: true
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: [enhancement]
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
## Describe your changes
2+
3+
<!-- Describe your changes -->
4+
5+
## Checklist before requesting a review
6+
- [ ] I have performed a self-review of my code
7+
8+
- Check the correct box. Does this PR contain:
9+
- [ ] Breaking changes
10+
- [ ] New functionality
11+
- [ ] Major changes
12+
- [ ] Minor changes
13+
- [ ] Bug fixes
14+
15+
- [ ] Proposed changes are described in the CHANGELOG.md
16+
17+
- [ ] CI Tests succeed and look good!

.github/workflows/build.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Build
2+
3+
on:
4+
push:
5+
branches: [ 'main' ]
6+
workflow_dispatch:
7+
inputs:
8+
version:
9+
description: |
10+
The version of the project to build. Example: `1.0.3`.
11+
12+
If not provided, a development build with a version name
13+
based on the branch name will be built. Otherwise, a release
14+
build with the provided version will be built.
15+
required: false
16+
17+
jobs:
18+
build:
19+
uses: viash-io/viash-actions/.github/workflows/build.yaml@v6
20+
with:
21+
version: ${{ github.event.inputs.version }}

.github/workflows/test.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Test
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
9+
jobs:
10+
test:
11+
uses: viash-io/viash-actions/.github/workflows/test.yaml@v6

.gitignore

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
/resources
2+
/resources_test
3+
/work
4+
/.nextflow*
5+
/target
6+
7+
.DS_Store
8+
/output
9+
trace-*
10+
.ipynb_checkpoints
11+
/temp
12+
/.vscode

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "common"]
2+
path = common
3+
url = https://github.com/openproblems-bio/common_resources.git

.vscode/settings.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"yaml.schemas": {
3+
"common/schemas/api_component_spec.yaml": "**/api/comp_*.yaml",
4+
"common/schemas/api_file_format.yaml": "**/api/file_*.yaml",
5+
"common/schemas/task_config.yaml": "_viash.yaml",
6+
"common/schemas/task_method.yaml": "**/methods/**/config.vsh.yaml",
7+
"common/schemas/task_control_method.yaml": "**/control_methods/**/config.vsh.yaml",
8+
"common/schemas/task_metric.yaml": "**/metrics/**/config.vsh.yaml"
9+
}
10+
}

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# task_template x.y.z
2+
3+
## BREAKING CHANGES
4+
5+
<!-- * Restructured `src` directory (PR #3). -->
6+
7+
## NEW FUNCTIONALITY
8+
9+
* Added `control_methods/true_labels` component (PR #5).
10+
11+
* Added `methods/logistic_regression` component (PR #5).
12+
13+
* Added `metrics/accuracy` component (PR #5).
14+
15+
## MAJOR CHANGES
16+
17+
* Updated `api` files (PR #5).
18+
19+
* Updated configs, components and CI to the latest Viash version (PR #8).
20+
21+
* Updated to Viash 0.9.4 (PR #12).
22+
23+
* Use dependencies in `openproblems-bio/openproblems` (PR #12).
24+
25+
## MINOR CHANGES
26+
27+
* Updated `README.md` (PR #5).
28+
29+
## BUGFIXES
30+

0 commit comments

Comments
 (0)