Open sherzinger opened 3 years ago
Hello @sherzinger I would like to introduce these things in the omics view:
Luca
Sounds good to me. The omics flag would allow us to make and enforce some assumptions about the data type for the later steps of this feature.
Hello @sherzinger I did an update in https://10.240.16.149, regarding Omics integration. Let's talk when we're both back from xmas holidays.
Luca
Hello @soumyabrataghosh I did an update in https://10.240.16.149. Let us know.
Yes .. I checked that .. one thing came to my mind .. can we join more than two tables ..
like Table T1
with Table T2
on person_id
then joined(T1,T2)
with Table T3
on visit_id
Also I have another comment about the array feature .. or more generic way how to handle time-series data … (visit_id
becomes the secondary primary key)
or .. person_id-visit_id
becomes the primary key
But otherwise this feature is a giant leap, no doubt of it.
@soumyabrataghosh first part of your consideration, regarding cross join between datasets, is present yet in the current implementation. It's possible make join between tables T1 and T2 and use the result for another table T3.
There will be other feature requests for genomic support, but I believe this is a fundamental first step. Please feel free to give your own input or suggest something entirely different!
Scenario: We have two datasets:
clinicalData:
genomicalData (one of several ways to structure it):
Use case description: I want to be able to filter the clinicalData dataset by
age < 45 && gender == f
. Then I want to see the genomicalData dataset for the filtered samples. This could be achieved by interacting with the columnID
in theclinicalData
dataset, which opens a dialog with two parameters:target dataset
andtarget dataset column
, which in the above scenario would take the valuesgenomicalData
andsample_id
. After confirming the dialog I am redirected togenomicalData
with the following filter already applied:sample_id == [s123, ...]
.