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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, is_minor, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
5510100 GT-AG 0 1.000000099473604e-05 21561 rna-XM_019487430.1 1076605 1 459053 480613 Alligator mississippiensis 8496 GGG|GTAGGAGGGG...CCTGCTCTAATT/CCTGCTCTAATT...TTCAG|CCC 2 1 8.441
5510101 AT-AC 1 99.9999999981755 3883 rna-XM_019487430.1 1076605 2 455076 458958 Alligator mississippiensis 8496 GAT|ATATCCTTTT...CGGTCCTTAACT/AATTTTGTTACA...CATAC|ACT 0 1 16.537
5510102 GT-AG 0 1.2568311194891717e-05 2068 rna-XM_019487430.1 1076605 3 452915 454982 Alligator mississippiensis 8496 ACA|GTAAGTCGCT...TAATCTTTGTCC/CAATTTATAATC...TGCAG|TCT 0 1 24.548
5510103 GT-AG 0 1.6393465097234906e-05 642 rna-XM_019487430.1 1076605 4 452215 452856 Alligator mississippiensis 8496 ATG|GTAAGTTAGT...ATCTCTTTATCT/CATCTCTTTATC...TGCAG|GCG 1 1 29.543
5510104 GT-AG 0 0.0002453443501582 3349 rna-XM_019487430.1 1076605 5 448814 452162 Alligator mississippiensis 8496 AAA|GTATGGAAAA...TTTCTCTTATTT/TTTTCTCTTATT...TCTAG|AGA 2 1 34.022
5510105 GT-AG 0 1.000000099473604e-05 687 rna-XM_019487430.1 1076605 6 447972 448658 Alligator mississippiensis 8496 AAG|GTAAGTTTGC...GTTTACTTGAAA/GATGTTCTCAAA...TTTAG|GCA 1 1 47.373
5510106 GT-AG 0 1.000000099473604e-05 457 rna-XM_019487430.1 1076605 7 447424 447880 Alligator mississippiensis 8496 GAG|GTAATGTGCC...ACTTTTTTCGCT/TAGCACCTGATG...CTTAG|TGT 2 1 55.211
5510107 GT-AG 0 0.0003448488424601 867 rna-XM_019487430.1 1076605 8 446491 447357 Alligator mississippiensis 8496 ACA|GTAGGTTCTG...TAGTCTTTTTCA/GTCTTTTTCAAA...ACCAG|GTG 2 1 60.896
5510108 GT-AG 0 4.549009855357831e-05 878 rna-XM_019487430.1 1076605 9 445486 446363 Alligator mississippiensis 8496 GAG|GTAGGCATTT...GAGCTCTTTGCG/GGAATGCTAACA...TGCAG|ACT 0 1 71.835
5510109 GT-AG 0 1.000000099473604e-05 811 rna-XM_019487430.1 1076605 10 444545 445355 Alligator mississippiensis 8496 CAG|GTAGGTGCCT...CTTTCCCTGGCT/CTTCTGCCCAAA...TCCAG|GCG 1 1 83.032
5510110 GT-AG 0 1.000000099473604e-05 901 rna-XM_019487430.1 1076605 11 443599 444499 Alligator mississippiensis 8496 AAG|GTAAATACTG...GCTCCCCTGACT/GCTCCCCTGACT...TGTAG|GAA 1 1 86.908
5510111 GT-AG 0 1.000000099473604e-05 1616 rna-XM_019487430.1 1076605 12 441918 443533 Alligator mississippiensis 8496 AAG|GTGAGCTCCA...GACTTCTTTCCC/TTCAAGTTGACT...TTCAG|GTT 0 1 92.506
5510112 GT-AG 0 1.000000099473604e-05 850 rna-XM_019487430.1 1076605 13 441000 441849 Alligator mississippiensis 8496 GTG|GTAAGGATCT...AATGCTTTACTG/TAATGCTTTACT...CCCAG|TGT 2 1 98.363

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