Datasets:

Modalities:
Tabular
Text
Formats:
parquet
Libraries:
Datasets
pandas
License:
ligeti commited on
Commit
bca139e
·
verified ·
1 Parent(s): a64c0f1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +66 -0
README.md CHANGED
@@ -1,3 +1,69 @@
1
  ---
2
  license: cc-by-nc-4.0
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-nc-4.0
3
  ---
4
+
5
+ # Dataset Card for "Promoter Validation Data"
6
+
7
+ ## Table of Contents
8
+
9
+ - [Overview](#overview)
10
+ - [Dataset Description](#dataset-description)
11
+ - [Data Collection and Processing](#data-collection-and-processing)
12
+ - [Dataset Structure](#dataset-structure)
13
+ - [Data Partitioning and Utilization](#data-partitioning-and-utilization)
14
+ - [Dataset Splits](#dataset-splits)
15
+ - [Dataset Fields](#dataset-fields)
16
+ - [Use Cases & Limitations](#use-cases--limitations)
17
+ - [How to Use](#how-to-use)
18
+ - [Citation](#citation)
19
+ - [Contact](#contact)
20
+
21
+ ## Overview
22
+
23
+ This dataset contains promoter sequences used for validation purposes in genetic research, focusing on prokaryotic promoters. It serves to facilitate the study of gene expression regulation, providing a comprehensive set of promoter sequences from various organisms.
24
+
25
+ ## Dataset Description
26
+
27
+ ### Data Collection and Processing
28
+
29
+ - **Data Source**: The positive samples, known promoters, are primarily drawn from the Prokaryotic Promoter Database (PPD), containing experimentally validated promoter sequences from 75 organisms. Non-promoter sequences are obtained from the NCBI RefSeq database, sampled specifically from CDS regions.
30
+ - **Preprocessing**: The dataset includes non-promoter sequences constructed via higher and zero-order Markov chains, which mirror compositional characteristics of known promoters. An independent test set based on _E.coli_ sigma70 promoters is also included.
31
+
32
+ ### Dataset Structure
33
+
34
+ - **Dataset Splits**: The dataset is systematically divided into training, validation, and test subsets.
35
+ - **Data Fields**:
36
+ - `segment_id`: Unique identifier for each segment.
37
+ - `ppd_original_SpeciesName`: Original species name from the PPD.
38
+ - `Strand`: The strand of the DNA sequence.
39
+ - `segment`: The DNA sequence of the promoter region.
40
+ - `label`: The label indicating whether the sequence is a promoter or non-promoter.
41
+ - `L`: Length of the DNA sequence.
42
+ - `prom_class`: The class of the promoter.
43
+ - `y`: Binary label indicating the presence of a promoter.
44
+
45
+ ## Data Partitioning and Utilization
46
+
47
+ To ensure comprehensive evaluation, the dataset was split randomly into three parts:
48
+ 1. **Training set**: 80% of the total data for model development and training.
49
+ 2. **Validation set**: 10% of the data, aiding in fine-tuning model parameters.
50
+ 3. **Test set**: Remaining 10% of the data, crucial for unbiased model performance evaluation.
51
+
52
+ ## Dataset Splits
53
+
54
+ - **Training Set**: Primary dataset used for model training.
55
+ - **Test Set (Sigma70)**: Independent test set focusing on _E.coli_ sigma70 promoters.
56
+ - **Multispecies Set**: Additional test set including various species, ensuring generalization across different organisms.
57
+
58
+ ## Use Cases & Limitations
59
+
60
+ This dataset is intended for use in training models for promoter prediction and understanding gene expression regulation. Limitations include the specific focus on prokaryotic promoters and the method of sequence generation using Markov chains.
61
+
62
+ ## How to Use
63
+
64
+ You can load the dataset using the Hugging Face `datasets` library:
65
+
66
+ ```python
67
+ from datasets import load_dataset
68
+
69
+ dataset = load_dataset("your_dataset_name")