1
|
|
|
#!/usr/bin/env python3 |
2
|
|
|
# -*- coding: utf-8 -*- |
3
|
|
|
""" |
4
|
|
|
Created on Fri Sep 27 15:46:59 2019 |
5
|
|
|
|
6
|
|
|
@author: Paolo Cozzi <[email protected]> |
7
|
|
|
""" |
8
|
|
|
|
9
|
|
|
from django.conf.urls import url |
10
|
|
|
|
11
|
|
|
from . import views |
12
|
|
|
|
13
|
|
|
# from django.conf.urls import include |
14
|
|
|
# from django.contrib import admin |
15
|
|
|
|
16
|
|
|
|
17
|
|
|
urlpatterns = [ |
18
|
|
|
url(r'^ontologies_report/$', |
19
|
|
|
views.OntologiesReportView.as_view(), |
20
|
|
|
name='ontologies_report'), |
21
|
|
|
|
22
|
|
|
url(r'^annotate_breeds/$', |
23
|
|
|
views.AnnotateBreedsView.as_view(), |
24
|
|
|
name='annotate_breeds'), |
25
|
|
|
|
26
|
|
|
url(r'^annotate_countries/$', |
27
|
|
|
views.AnnotateCountriesView.as_view(), |
28
|
|
|
name='annotate_countries'), |
29
|
|
|
|
30
|
|
|
url(r'^annotate_species/$', |
31
|
|
|
views.AnnotateSpeciesView.as_view(), |
32
|
|
|
name='annotate_species'), |
33
|
|
|
|
34
|
|
|
url(r'^annotate_organismparts/$', |
35
|
|
|
views.AnnotateOrganismPartView.as_view(), |
36
|
|
|
name='annotate_organismparts'), |
37
|
|
|
|
38
|
|
|
url(r'^annotate_develstages/$', |
39
|
|
|
views.AnnotateDevelStageView.as_view(), |
40
|
|
|
name='annotate_develstages'), |
41
|
|
|
|
42
|
|
|
url(r'^annotate_physiostages/$', |
43
|
|
|
views.AnnotatePhysioStageView.as_view(), |
44
|
|
|
name='annotate_physiostages'), |
45
|
|
|
] |
46
|
|
|
|