Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
J
jass
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Statistical-Genetics
jass
Merge requests
!46
Draft: Dev fastapi k8s fixing tests
Code
Examiner les modifications
Extraire la branche
Télécharger
Correctifs
Diff brut
Closed
Draft: Dev fastapi k8s fixing tests
dev-fastapi-k8s-fixing-tests
into
dev-fastapi-k8s
Overview
1
Commits
15
Pipelines
0
Changes
17
Closed
Bryan BRANCOTTE
requested to merge
dev-fastapi-k8s-fixing-tests
into
dev-fastapi-k8s
3 years ago
Overview
1
Commits
15
Pipelines
0
Changes
17
Expand
0
0
Merge request reports
Compare
dev-fastapi-k8s
version 10
5cfef973
3 years ago
version 9
3a1752dd
3 years ago
version 8
a9ac8c01
3 years ago
version 7
362ba47f
3 years ago
version 6
765604fb
3 years ago
version 5
9f120064
3 years ago
version 4
44f3e32e
3 years ago
version 3
e68c45ff
3 years ago
version 2
c0128651
3 years ago
version 1
913efb62
3 years ago
dev-fastapi-k8s (base)
and
latest version
latest version
047a6971
15 commits,
3 years ago
version 10
5cfef973
14 commits,
3 years ago
version 9
3a1752dd
13 commits,
3 years ago
version 8
a9ac8c01
12 commits,
3 years ago
version 7
362ba47f
11 commits,
3 years ago
version 6
765604fb
10 commits,
3 years ago
version 5
9f120064
9 commits,
3 years ago
version 4
44f3e32e
8 commits,
3 years ago
version 3
e68c45ff
5 commits,
3 years ago
version 2
c0128651
4 commits,
3 years ago
version 1
913efb62
2 commits,
3 years ago
17 files
+
620
−
569
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
17
Search (e.g. *.vue) (Ctrl+P)
jass/models/phenotype.py
+
5
−
0
Options
# coding: utf-8
from
typing
import
List
import
pandas
from
pydantic
import
BaseModel
@@ -69,3 +70,7 @@ def get_available_phenotypes(init_file_path: str):
phenotype
=
Phenotype
.
from_phenolist
(
row
)
phenotypes
.
append
(
phenotype
)
return
phenotypes
class
PhenotypeIdList
(
BaseModel
):
phenotypeID
:
List
[
str
]
=
[]
Loading