introns
Data license: ODbL · Data source: Larue & Roy, 2023 · About: Minor Intron Database (WtMTA)
- id
- INTEGER (primary key), globally unique identifier for each intron
- dinucleotide_pair
- TEXT, terminal dinucleotide sequences of the intron
- is_minor
- INTEGER, indicates if the intron is a minor intron (1) or not (0)
- score
- REAL, score representing the probability (0-100%) of the intron being minor
- length
- INTEGER, length of the intron in base pairs
- transcript_id
- INTEGER (foreign key referencing transcripts(id)), parent transcript
- ordinal_index
- INTEGER, ordinal position of the intron within the transcript (e.g., 3 for the third intron)
- start
- INTEGER, start position of the intron in the genome
- end
- INTEGER, end position of the intron in the genome
- taxonomy_id
- INTEGER (foreign key referencing genomes(taxonomy_id)), NCBI taxonomy identifier for species
- scored_motifs
- TEXT, motifs scored for the intron
- phase
- INTEGER, phase of the intron in coding sequence (0, 1, or 2 or null for introns outside of coding sequence)
- in_cds
- INTEGER, indicates if the intron is within the coding sequence (1) or not (0; e.g., UTR introns)
- relative_position
- REAL, relative position of the intron within the transcript (as a percentage of coding length)
10 rows where transcript_id = 31341596
This data as json, CSV (advanced)
Suggested facets: score, phase
id ▼ | dinucleotide_pair | is_minor | score | length | transcript_id | ordinal_index | start | end | taxonomy_id | scored_motifs | phase | in_cds | relative_position |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
174592474 | GT-AG | 0 | 1.000000099473604e-05 | 1632 | rna-NZN594_LOCUS874 31341596 | 1 | 4749998 | 4751629 | Rotaria sp. silwood1 2762511 | AGG|GTTCGTGTAT...ATTTTCTTTTCT/TATATATTCATA...CATAG|ATC | 1 | 1 | 4.672 |
174592475 | GT-AG | 0 | 5.098152435843166e-05 | 400 | rna-NZN594_LOCUS874 31341596 | 2 | 4752584 | 4752983 | Rotaria sp. silwood1 2762511 | TAG|GTAAATTTAA...GATATTTTAATT/TAAATTTTTACT...TCTAG|GAA | 1 | 1 | 17.226 |
174592476 | GT-AG | 0 | 0.0191166176874922 | 950 | rna-NZN594_LOCUS874 31341596 | 3 | 4753512 | 4754461 | Rotaria sp. silwood1 2762511 | AAG|GTATATTATT...TCTTTCTTATCT/CATTTTTTCATT...CATAG|GTT | 1 | 1 | 24.174 |
174592477 | GT-AG | 0 | 1.000000099473604e-05 | 66 | rna-NZN594_LOCUS874 31341596 | 4 | 4755227 | 4755292 | Rotaria sp. silwood1 2762511 | CAG|GTAAAGGAAA...TTCTCTTTTTCT/AACAGATTAATT...TTTAG|ATA | 1 | 1 | 34.241 |
174592478 | GT-AG | 0 | 1.000000099473604e-05 | 1668 | rna-NZN594_LOCUS874 31341596 | 5 | 4755740 | 4757407 | Rotaria sp. silwood1 2762511 | TTG|GTAAGATAAA...TTTTTGTTAAAA/ACAATATTTATT...CCTAG|GTA | 1 | 1 | 40.124 |
174592479 | GT-AG | 0 | 0.0003453026523175 | 56 | rna-NZN594_LOCUS874 31341596 | 6 | 4758092 | 4758147 | Rotaria sp. silwood1 2762511 | TTG|GTATAAAAAA...TTTTTCTTATTA/CTTTTTCTTATT...TATAG|ATA | 1 | 1 | 49.125 |
174592480 | GT-AG | 0 | 8.01960677850946e-05 | 783 | rna-NZN594_LOCUS874 31341596 | 7 | 4758730 | 4759512 | Rotaria sp. silwood1 2762511 | TGT|GTAAGTTAAA...TTTTCGTTATAT/TATATATTTATT...CTTAG|CGT | 1 | 1 | 56.784 |
174592481 | GT-AG | 0 | 1.000000099473604e-05 | 65 | rna-NZN594_LOCUS874 31341596 | 8 | 4760454 | 4760518 | Rotaria sp. silwood1 2762511 | TTG|GTAAGATAAC...TCTTTTTTGTTT/TTCATACTAATA...TTTAG|CGT | 0 | 1 | 69.167 |
174592482 | GT-AG | 0 | 0.0027146116285613 | 62 | rna-NZN594_LOCUS874 31341596 | 9 | 4761181 | 4761242 | Rotaria sp. silwood1 2762511 | AAA|GTTTGTTTAT...TTTTTTTTATTC/TTTTTTTTTATT...TTTAG|TGA | 2 | 1 | 77.879 |
174592483 | GT-AG | 0 | 1.2320450678819188e-05 | 1384 | rna-NZN594_LOCUS874 31341596 | 10 | 4761713 | 4763096 | Rotaria sp. silwood1 2762511 | CTG|GTAAAGTTAT...TATGTTTTAACA/TATGTTTTAACA...GCTAG|GTC | 1 | 1 | 84.064 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE "introns" ( "id" INTEGER, "dinucleotide_pair" TEXT, "is_minor" INTEGER, "score" REAL, "length" INTEGER, "transcript_id" INTEGER, "ordinal_index" INTEGER, "start" INTEGER, "end" INTEGER, "taxonomy_id" INTEGER, "scored_motifs" TEXT, "phase" INTEGER, "in_cds" INTEGER, "relative_position" REAL ,PRIMARY KEY ([id]), FOREIGN KEY([transcript_id]) REFERENCES [transcripts]([id]), FOREIGN KEY([taxonomy_id]) REFERENCES [genomes]([taxonomy_id]) ); CREATE INDEX [idx_introns_transcript_id] ON [introns] ([transcript_id]); CREATE INDEX [idx_introns_taxonomy_id] ON [introns] ([taxonomy_id]); CREATE INDEX [idx_introns_phase] ON [introns] ([phase]); CREATE INDEX [idx_introns_is_minor] ON [introns] ([is_minor]); CREATE INDEX [idx_introns_dinucleotide_pair] ON [introns] ([dinucleotide_pair]); CREATE INDEX [idx_introns_score] ON [introns] ([score]); CREATE INDEX [idx_introns_in_cds] ON [introns] ([in_cds]);