home / WtMTA

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)

13 rows where transcript_id = 15733573

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, length, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
84901690 GT-AG 0 2.615608136988907e-05 336 rna-XM_017787361.1 15733573 1 94982255 94982590 Gossypium arboreum 29729 CAG|GTTCGTTTGT...TCTTTTTTATTT/TTCTTTTTTATT...AGCAG|TGG 1 1 1.735
84901691 GT-AG 0 1.000000099473604e-05 1820 rna-XM_017787361.1 15733573 2 94982698 94984517 Gossypium arboreum 29729 CAG|GTACAAAAAA...ATATCATTATCA/TTATCACTGATT...GCCAG|AGT 0 1 2.436
84901692 GT-AG 0 3.505519083687465 86 rna-XM_017787361.1 15733573 3 94984684 94984769 Gossypium arboreum 29729 AAG|GTATCTTTGA...GACTTTTTACTG/TTTTTACTGATT...AAAAG|GGA 1 1 3.523
84901693 GT-AG 0 0.0002865974377502 897 rna-XM_017787361.1 15733573 4 94990841 94991737 Gossypium arboreum 29729 AAG|GTATAGCTTT...CATCTGTTGACT/TTGTAACTGATC...TCCAG|ATA 0 1 43.272
84901694 GT-AG 0 2.433176940216325e-05 85 rna-XM_017787361.1 15733573 5 94992344 94992428 Gossypium arboreum 29729 CAG|GTACTTACCC...TGATTCTTTGCT/TATTGATTTATT...TTTAG|ATC 0 1 47.24
84901695 GT-AG 0 0.0027631250665701 379 rna-XM_017787361.1 15733573 6 94992610 94992988 Gossypium arboreum 29729 ATG|GTATAGTCTT...TTTTTTTTAAAC/TTTTTTTTAAAC...TGTAG|GTT 1 1 48.425
84901696 GT-AG 0 0.0005948350992465 123 rna-XM_017787361.1 15733573 7 94993224 94993346 Gossypium arboreum 29729 CAG|GTATTGCTCA...TTAGCTTTAATG/ATGGTACTCACT...TTCAG|TTT 2 1 49.964
84901697 GT-AG 0 0.0126610820096174 76 rna-XM_017787361.1 15733573 8 94997895 94997970 Gossypium arboreum 29729 GAG|GTATCACTAA...ATATTCTAATTA/CATATTCTAATT...AACAG|ATT 2 1 79.742
84901698 GT-AG 0 1.000000099473604e-05 130 rna-XM_017787361.1 15733573 9 94998194 94998323 Gossypium arboreum 29729 TTG|GTATGGGAAC...TGAGTTATAACA/TTTATATTGAGT...GGCAG|TTT 0 1 81.202
84901699 GT-AG 0 5.60513785145394e-05 306 rna-XM_017787361.1 15733573 10 94998729 94999034 Gossypium arboreum 29729 CAG|GTTTGTTACT...TCTGTTTTATTT/TTCTGTTTTATT...GACAG|GGT 0 1 83.854
84901700 GT-AG 0 1.000000099473604e-05 134 rna-XM_017787361.1 15733573 11 94999179 94999312 Gossypium arboreum 29729 CAG|GTGCGTGGGT...CCGCTTTTAAAA/GATTTATTCATG...TACAG|CGT 0 1 84.797
84901701 GT-AG 0 0.0263832805235115 383 rna-XM_017787361.1 15733573 12 95000339 95000721 Gossypium arboreum 29729 CAG|GTACCTTCAT...TTTATCTTGGCT/GCTGAACTGATT...TCTAG|GGA 0 1 91.514
84901702 GT-AG 0 0.1411472972836004 85 rna-XM_017787361.1 15733573 13 95001226 95001310 Gossypium arboreum 29729 CTG|GTATGCTCTT...CTGTTTTTAGAT/ATGTGCCTGATA...CGCAG|ATG 0 1 94.814

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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]);
Powered by Datasette · Queries took 149.813ms · Data license: ODbL · Data source: Larue & Roy, 2023 · About: Minor Intron Database (WtMTA)