Datasets:

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

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -17
README.md CHANGED
@@ -42,27 +42,22 @@ configs:
42
  - split: train
43
  path: data/train-*
44
  ---
45
-
46
  # Dataset Description
47
 
48
- This dataset was used for evaluated the different models on the masking exercise, i.e. measuring how well the different models are able to recover the original character.
49
 
50
  ## Dataset Overview
51
 
52
- The dataset is compiled from the RefSeq database and other sources, focusing on ESKAPE pathogens. The genomic features were sampled randomly, followed by contigous segmentation.
53
- This dataset contains various different segment with lengths: [128, 256, 512, 1024].
54
- The segments were randomly selected and one of the characters were replace by * (masked_segment column). The reference_segment contains the original, non-replaced nucleotides.
55
- We performed 10000 masking per set, maximum of 2000 genomic feeatures. Only the genomic features: 'CDS', 'intergenic', 'pseudogene', 'ncRNA' features were considered.
56
-
57
 
58
  ## Data Fields
59
 
60
  - `reference_segment_id`: A mapping of segment identifiers to their respective reference IDs in the database.
61
  - `masked_segment`: The DNA sequence of the segment with certain positions masked (marked with '*') for prediction or testing purposes.
62
  - `position_to_mask`: The specific position(s) in the sequence that have been masked, indicated by index numbers.
63
- - `masked_segment_id`: Unique identifiers assigned to the masked segments. (only unique with respect to length)
64
  - `contig_id`: Identifier of the contig to which the segment belongs.
65
- - `segment_id`: Unique identifier for each genomic segment. (reference segment id)
66
  - `strand`: The DNA strand of the segment, indicated as '+' (positive) or '-' (negative).
67
  - `seq_start`: Starting position of the segment within the contig.
68
  - `seq_end`: Ending position of the segment within the contig.
@@ -72,25 +67,22 @@ We performed 10000 masking per set, maximum of 2000 genomic feeatures. Only the
72
  - `segment_length`: The length of the genomic segment.
73
  - `original_segment`: The original genomic sequence without any masking.
74
 
75
-
76
  ## Usage
77
 
78
- This dataset is intended for academic and research purposes. Users are encouraged to apply this dataset in the development and evaluation of bioinformatics models, especially those related to genomic studies.
79
 
80
  ## Citation
81
 
82
-
83
  If you use the code or data in this package, please cite:
84
 
85
  ```bibtex
86
  @Article{ProkBERT2024,
87
  author = {Ligeti, Balázs and Szepesi-Nagy, István and Bodnár, Babett and Ligeti-Nagy, Noémi and Juhász, János},
88
  journal = {Frontiers in Microbiology},
89
- title = {{ProkBERT} family: genomic language models for microbiome applications},
90
  year = {2024},
91
  volume = {14},
92
- URL={https://www.frontiersin.org/articles/10.3389/fmicb.2023.1331233},
93
- DOI={10.3389/fmicb.2023.1331233},
94
- ISSN={1664-302X}
95
  }
96
- ```
 
42
  - split: train
43
  path: data/train-*
44
  ---
 
45
  # Dataset Description
46
 
47
+ This dataset was used to evaluate different models on the masking exercise, measuring how well the different models can recover the original character.
48
 
49
  ## Dataset Overview
50
 
51
+ The dataset is compiled from the RefSeq database and other sources, focusing on ESKAPE pathogens. The genomic features were sampled randomly, followed by contiguous segmentation. This dataset contains various segments with lengths: [128, 256, 512, 1024]. The segments were randomly selected, and one of the characters was replaced by '*' (masked_segment column) to create a masking task. The reference_segment contains the original, non-replaced nucleotides. We performed 10,000 maskings per set, with a maximum of 2,000 genomic features. Only the genomic features: 'CDS', 'intergenic', 'pseudogene', and 'ncRNA' were considered.
 
 
 
 
52
 
53
  ## Data Fields
54
 
55
  - `reference_segment_id`: A mapping of segment identifiers to their respective reference IDs in the database.
56
  - `masked_segment`: The DNA sequence of the segment with certain positions masked (marked with '*') for prediction or testing purposes.
57
  - `position_to_mask`: The specific position(s) in the sequence that have been masked, indicated by index numbers.
58
+ - `masked_segment_id`: Unique identifiers assigned to the masked segments. (unique only with respect to length)
59
  - `contig_id`: Identifier of the contig to which the segment belongs.
60
+ - `segment_id`: Unique identifier for each genomic segment (same as reference segment id).
61
  - `strand`: The DNA strand of the segment, indicated as '+' (positive) or '-' (negative).
62
  - `seq_start`: Starting position of the segment within the contig.
63
  - `seq_end`: Ending position of the segment within the contig.
 
67
  - `segment_length`: The length of the genomic segment.
68
  - `original_segment`: The original genomic sequence without any masking.
69
 
 
70
  ## Usage
71
 
72
+ This dataset is intended for academic and research purposes. Users are encouraged to use this dataset in the development and evaluation of bioinformatics models, especially those related to genomic studies.
73
 
74
  ## Citation
75
 
 
76
  If you use the code or data in this package, please cite:
77
 
78
  ```bibtex
79
  @Article{ProkBERT2024,
80
  author = {Ligeti, Balázs and Szepesi-Nagy, István and Bodnár, Babett and Ligeti-Nagy, Noémi and Juhász, János},
81
  journal = {Frontiers in Microbiology},
82
+ title = {{ProkBERT} family: Genomic language models for microbiome applications},
83
  year = {2024},
84
  volume = {14},
85
+ URL = {https://www.frontiersin.org/articles/10.3389/fmicb.2023.1331233},
86
+ DOI = {10.3389/fmicb.2023.1331233},
87
+ ISSN = {1664-302X}
88
  }