Skip to content

Commit

Permalink
Merge pull request #31 from Caleydo/release-2.0.0
Browse files Browse the repository at this point in the history
Release 2.0.0
  • Loading branch information
Anita Steiner authored May 2, 2022
2 parents 7ee711c + c103930 commit 989daac
Show file tree
Hide file tree
Showing 81 changed files with 1,409 additions and 750 deletions.
3 changes: 2 additions & 1 deletion .yo-rc.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
"selection": "some"
}
}
]
],
"copyFiles": ["dist/clientConfig.json"]
}
}
5 changes: 1 addition & 4 deletions coral/db.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,8 @@
for col in columns[table]:
db_builder.column(col[0], type=col[1])

# assign_ids ... the tdp server should automatically manage and assign unique integer ids based on the 'id' column
# call(inject_where) ... utility to inject a where clause that is used for dynamic filtering
views[table] = db_builder.assign_ids() \
.call(inject_where) \
views[table] = db_builder.call(inject_where) \
.build()

add_common_queries(views, schema_table, id_type, 'id', columns[table])
Expand All @@ -41,7 +39,6 @@
# by convention the 'id' column contains the identifier column of a row --> we have an id column in the db
# derive_columns ... try to automatically derive column and column types
# column(column, attrs) ... would explicitly set a column type
# assign_ids ... the tdp server should automatically manage and assign unique integer ids based on the 'id' column
# filter (get the filter with key 'month' / year and add a where clause like giessdatum_monat='1')
# .call(inject_where) ... utility to inject a where clause that is used for dynamic filtering ---> otherwise the filter callc above do not work and all the data is retrieved

Expand Down
10 changes: 7 additions & 3 deletions dist/Cohort.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 17 additions & 5 deletions dist/Cohort.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/Cohort.js.map

Large diffs are not rendered by default.

10 changes: 8 additions & 2 deletions dist/CohortRepresentations.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/CohortRepresentations.js.map

Large diffs are not rendered by default.

13 changes: 13 additions & 0 deletions dist/Provenance/CohortEV.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/Provenance/CohortEV.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 10 additions & 13 deletions dist/Taskview/SearchBar.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/Taskview/SearchBar.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/Taskview/SearchColumn.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 989daac

Please sign in to comment.