wwydmanski commited on
Commit
230f4c8
·
1 Parent(s): e2fbb9b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +41 -0
README.md CHANGED
@@ -1,3 +1,44 @@
1
  ---
2
  license: afl-3.0
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: afl-3.0
3
+ task_categories:
4
+ - tabular-classification
5
+ pretty_name: BioDataome
6
+ size_categories:
7
+ - n<1k
8
+ - 1K<n<10K
9
  ---
10
+
11
+ # BioDataome
12
+
13
+ This is an aggregate dataset which allows you to download any and all data from the [BioDataome project](http://dataome.mensxmachina.org/).
14
+
15
+ ## What is BioDataome?
16
+ This vignette provides a task-oriented description of BioDataome package, examples of user interaction with BioDataome and some examples of analysing BioDataome datasets. BioDataome is a collection of uniformly preprocessed and automatically annotated datasets for data-driven biology. The processed data can be accessed via the BioDataome website in .csv format and the BioDataome package via github. BioDataome package contains all the functions used to download, preprocess and annotate gene expression and methylation microarray data from Gene Expression Omnibus, as well as RNASeq data from recount.
17
+
18
+ ## Usage
19
+ ```python
20
+ import datasets
21
+ ds = datasets.load_dataset("wwydmanski/BioDataome", "GSE24849")['train']
22
+ split_ds = ds.train_test_split(test_size=0.1)
23
+ train_ds, test_ds = split_ds['train'], split_ds['test']
24
+
25
+ # there is probably a better way to do this, but this seems to work the fastest
26
+ y_train = train_ds.to_pandas()['metadata'].apply(lambda x: x['class'])
27
+ X_train = pd.DataFrame.from_records(train_ds.to_pandas()['data'])
28
+
29
+ y_test = test_ds.to_pandas()['metadata'].apply(lambda x: x['class'])
30
+ X_test = pd.DataFrame.from_records(test_ds.to_pandas()['data'])
31
+
32
+ ```
33
+
34
+ Please refer to the [original metadata](http://dataome.mensxmachina.org/) for the list of available datasets.
35
+
36
+ ## Disclaimer
37
+
38
+ BioDataome and its content are provided as is without any warranty of any kind, that BioDataome or any documents available from this server will be error free. In no event will its members be liable for any damages, arising out of, resulting from, or in any way connected with the use of BioDataome or documents available from this server.
39
+
40
+ BioDataome is restricted to research and educational use. The information you may retrieve and recover from BioDataome is not designed to diagnose, prevent, or treat any condition or disease
41
+
42
+ Part of research that led to the development of BioDataome has received funding from the European Research Council under the European Union's Seventh Framework Programme (FP/2007-2013) / ERC Grant Agreement n. 617393.
43
+
44
+ Part of the analyses results and the implementation of the web interface were funded by the “ELIXIR-GR: Managing and Analysing Life Sciences Data (MIS: 5002780)” Project, co-financed by Greece and the European Union - European Regional Development Fund.