Skip to content
Open
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: 2 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ on:
workflow_dispatch: {}
push:
branches: [main] # branch to trigger deployment
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
version: 1.8.5
- name: Install dependencies and run tests
run: |
export CI_CD=1
export BIH_HPC=0
poetry install
poetry run task coverage-test
- name: Generate coverage badge
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
*__pycache__
*.pyc
dist/

data/*
!*.gitkeep
docs/build/
73 changes: 38 additions & 35 deletions README.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion config/plugins/genetic/debug.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: GeneticPlugin
__init__: __init__
src: ['all_chrs_extended_tr.fincad100', 'all_chrs_valid.fincad100', 'all_chrs_test.fincad100']
src: ['genetic_extended_tr', 'genetic_valid', 'genetic_test']
src_names: ['train', 'valid', 'test']
genetic_json: 'res/ukb_genetic.json'
ontology: 'molecular_function'
Expand Down
372 changes: 269 additions & 103 deletions poetry.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "udm"
version = "0.2.0"
version = "1.0.0"
description = "DataModule used for unified access to UKBB data across BIH projects."
authors = [
"Luis Herrmann <luismherrmann@gmail.com>",
Expand Down Expand Up @@ -48,7 +48,7 @@ scipy = {version = "^1.9.3", source = "pypi"}
tqdm = {version = "^4.64.1", source = "pypi"}
wandb = {version = "^0.13.6", source = "pypi"}
zstandard = {version = "^0.19.0", source = "pypi"}
pytorch-lightning = {version = "^1.8.3.post1", source = "pypi"}
pytorch-lightning = {version = "^2.3.3.0", source = "pypi"}
pytest = "^7.2.1"
dill = "^0.3.6"
tensorstore = "^0.1.33"
Expand Down
Binary file not shown.
Loading
Loading