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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
53 GT-AG 0 4.215167928265068 180 rna-XM_027478500.1 16 1 2724536 2724715 Abrus precatorius 3816 CCC|GTATGCTCTT...TTTTTTTTAAAC/TTTAAACTTATT...ATTAG|GGA 2 1 11.63
54 GT-AG 0 1.000000099473604e-05 310 rna-XM_027478500.1 16 2 2724846 2725155 Abrus precatorius 3816 GAG|GTCTAACTGA...GTTTTCTTGTAC/GTGTTGCTCATT...TTCAG|GTA 0 1 17.582
55 GT-AG 0 0.0091537172203787 1024 rna-XM_027478500.1 16 3 2725428 2726451 Abrus precatorius 3816 TTG|GTATGCTGTG...GCTCTGTTATTT/CTGTTATTTATG...TGTAG|GTT 2 1 30.037
56 GT-AG 0 1.000000099473604e-05 4674 rna-XM_027478500.1 16 4 2726657 2731330 Abrus precatorius 3816 CAG|GTTGATCTCT...CATTCCTTAATC/TCCTTTTTCATT...ATCAG|GAT 0 1 39.423
57 GT-AG 0 1.000000099473604e-05 109 rna-XM_027478500.1 16 5 2731372 2731480 Abrus precatorius 3816 CAG|GTGAAAATTC...GTTTCCTTTTTT/TCCTTTTTTACT...TGCAG|TAG 2 1 41.3
58 GA-AA 0 0.0001975326584514 219 rna-XM_027478500.1 16 6 2731604 2731822 Abrus precatorius 3816 TCT|GAAGTATGCA...GGAATTATGACT/ATGACTCTCATT...TTTAA|TAG 2 1 46.932
59 GT-AG 0 1.000000099473604e-05 142 rna-XM_027478500.1 16 7 2731900 2732041 Abrus precatorius 3816 CAG|GTAAGTTAAA...TTTAGTTTAATC/TTTAATCTGATT...TACAG|GTG 1 1 50.458
60 GT-AG 0 6.363193456617576e-05 4499 rna-XM_027478500.1 16 8 2732263 2736761 Abrus precatorius 3816 CAG|GTATAAACTC...CTTTCCTTCATA/CTTTCCTTCATA...TTTAG|GAT 0 1 60.577
61 GT-AG 0 2.741820703946869e-05 110 rna-XM_027478500.1 16 9 2736857 2736966 Abrus precatorius 3816 CCG|GTAAGTATTA...ATTCTTTTGATT/ATTCTTTTGATT...TGCAG|TTG 2 1 64.927
62 GT-AG 0 0.0011511988583908 391 rna-XM_027478500.1 16 10 2737184 2737574 Abrus precatorius 3816 ATT|GTAAGTTATT...ACTACTTTGACT/CTTTGACTGATG...CACAG|CCA 0 1 74.863
63 GT-AG 0 1.000000099473604e-05 82 rna-XM_027478500.1 16 11 2737701 2737782 Abrus precatorius 3816 AAG|GTGGGCATAC...AGTACTTTGATA/TGAATATTTACC...ATCAG|GTT 0 1 80.632
64 GT-AG 0 1.000000099473604e-05 5052 rna-XM_027478500.1 16 12 2737882 2742933 Abrus precatorius 3816 AAG|GTAAATACTT...TGTGTGTTGACA/ATTCTACTAAAT...GATAG|GTG 0 1 85.165
65 GT-AG 0 1.152183230571476e-05 87 rna-XM_027478500.1 16 13 2743147 2743233 Abrus precatorius 3816 AGG|GTACTGAGTA...TATTTTTTATTG/CTATTTTTTATT...TATAG|GTT 0 1 94.918

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