Skip to content
Snippets Groups Projects

Minor Update to do: Use chr-pos rather than ip to create project Id for local analysis Draw the JASS Logo in the stderr

Closed Cyril NERIN requested to merge dev_cnerin into dev
1 unresolved thread
7 files
+ 35
63
Compare changes
  • Side-by-side
  • Inline
Files
7
@@ -42,18 +42,17 @@ def projects_post(phenotypeID):
@@ -42,18 +42,17 @@ def projects_post(phenotypeID):
return create_project(phenotypeID, PHENOTYPES)
return create_project(phenotypeID, PHENOTYPES)
def local_project_post(phenotypeID, ip, chromosome, start, end):
def local_project_post(phenotypeID, chromosome, start, end):
"""
"""
local_project_post
local_project_post
Create a new local project from a chromosome number, start and end positions
Create a new local project from a chromosome number, start and end positions
and a selection of phenotypes
and a selection of phenotypes
ip address of the user's computer is used to generate the name of the local project
:param param: IDs of the phenotypes selected for the project
:param param: IDs of the phenotypes selected for the project
:type phenotypeID: List[str]
:type phenotypeID: List[str]
:rtype: str
:rtype: str
"""
"""
return create_project_local(phenotypeID, PHENOTYPES, ip, chromosome, start, end)
return create_project_local(phenotypeID, PHENOTYPES, chromosome, start, end)
def projects_project_id_csv_status_get(projectID):
def projects_project_id_csv_status_get(projectID):
Loading