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 = 34724167

✎ 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
195653882 GT-AG 0 1.000000099473604e-05 204 rna-XM_010559771.2 34724167 1 1310433 1310636 Tarenaya hassleriana 28532 CCC|GTGAGTTGAT...GAATTCTTGATT/GAATTCTTGATT...CTTAG|GGA 2 1 7.9
195653883 GT-AG 0 4.375975532820581e-05 205 rna-XM_010559771.2 34724167 2 1310714 1310918 Tarenaya hassleriana 28532 GAG|GTATGGTCGT...ACTCTTTTAAGA/AGCAAGCTCACT...AGCAG|GTG 1 1 10.24
195653884 GT-AG 0 0.0005163658829839 129 rna-XM_010559771.2 34724167 3 1311192 1311320 Tarenaya hassleriana 28532 TGC|GTAAGCACTA...ATGTTCTGGATC/CTGGATCTAATC...AAAAG|CTT 1 1 18.535
195653885 GT-AG 0 0.0007075845810572 81 rna-XM_010559771.2 34724167 4 1311385 1311465 Tarenaya hassleriana 28532 ACC|GTAAGTTTCC...ATCGCGTTAATG/ATGTTGGTTATT...TGTAG|GTA 2 1 20.48
195653886 GT-AG 0 0.1931320456392356 199 rna-XM_010559771.2 34724167 5 1311613 1311811 Tarenaya hassleriana 28532 TGG|GTATTCATTT...GTCTTTTTACTA/TTAGTTCTCATA...TTCAG|ACA 2 1 24.947
195653887 GT-AG 0 0.0001800420366753 199 rna-XM_010559771.2 34724167 6 1311847 1312045 Tarenaya hassleriana 28532 AAC|GTAAGCCTAC...CACTTTTTACCC/CATCTGCTCACT...TGCAG|CTT 1 1 26.01
195653888 GT-AG 0 0.0001443699574805 192 rna-XM_010559771.2 34724167 7 1312120 1312311 Tarenaya hassleriana 28532 ATT|GTAAGTTCTC...GCAACCATGATA/ACCATGATAACG...TTCAG|GCT 0 1 28.259
195653889 GT-AG 0 0.0060059103936672 117 rna-XM_010559771.2 34724167 8 1313175 1313291 Tarenaya hassleriana 28532 CAG|GTAGCCCAAG...TTTCTTTTGAAA/TTTATATTGATT...TCAAG|ACT 2 1 54.482
195653890 GT-AG 0 1.000000099473604e-05 159 rna-XM_010559771.2 34724167 9 1313589 1313747 Tarenaya hassleriana 28532 AAG|GTAATGTCTT...GTGTTTTTATTA/ATTGTTTTCACA...TGCAG|CTA 2 1 63.507
195653891 GT-AG 0 0.0062488558352696 99 rna-XM_010559771.2 34724167 10 1314219 1314317 Tarenaya hassleriana 28532 AAG|GTATATTTAT...TTTGTCTTTTCC/AACGATCTGATG...CTCAG|GAT 2 1 77.818
195653892 GT-AG 0 0.001195648801003 179 rna-XM_010559771.2 34724167 11 1314467 1314645 Tarenaya hassleriana 28532 TCT|GTAAGTTTGA...TTGGTTTTATAT/AATATACTAACT...TTCAG|CTC 1 1 82.346
195653893 GT-AG 0 1.000000099473604e-05 90 rna-XM_010559771.2 34724167 12 1314936 1315025 Tarenaya hassleriana 28532 CTC|GTGAGTATCC...TTTTGTTTATTA/CTTTTGTTTATT...TGCAG|TTT 0 1 91.158
195653894 GT-AG 0 1.000000099473604e-05 358 rna-XM_010559771.2 34724167 13 1315160 1315517 Tarenaya hassleriana 28532 AAG|GTATGGCACG...TTAGCGTTTACG/GTTTACGTCACA...CACAG|GTA 2 1 95.229

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 45.236ms · Data license: ODbL · Data source: Larue & Roy, 2023 · About: Minor Intron Database (WtMTA)