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)

10 rows where transcript_id = 4721470

✎ 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
24706971 GT-AG 0 1.000000099473604e-05 1140 Brame.01UG503600.1.v1.1 4721470 1 101766512 101767651 Brachypodium mexicanum 52141 CAG|GTTGGCTCTC...TGTGTTTTACAA/TTGTGTTTTACA...TGCAG|CAT 0 1 9.078
24706972 GT-AG 0 1.000000099473604e-05 93 Brame.01UG503600.1.v1.1 4721470 2 101767707 101767799 Brachypodium mexicanum 52141 TAG|GTGAGACGAG...TGGTTCTTACAT/ACATGTTTAAGA...TACAG|AGG 1 1 10.388
24706973 GT-AG 0 8.663964623683455e-05 315 Brame.01UG503600.1.v1.1 4721470 3 101767976 101768290 Brachypodium mexicanum 52141 AAA|GTAAGTTTTT...GTCTATTTGATT/GTCTATTTGATT...TTTAG|GTC 0 1 14.582
24706974 GT-AG 0 8.634909454000143e-05 281 Brame.01UG503600.1.v1.1 4721470 4 101768492 101768772 Brachypodium mexicanum 52141 CAG|GTATTTAACT...TCCATCTGAGCA/ATCCATCTGAGC...TGCAG|GCA 0 1 19.371
24706975 GT-AG 0 0.0022255463897914 90 Brame.01UG503600.1.v1.1 4721470 5 101769033 101769122 Brachypodium mexicanum 52141 ACT|GTAAGCATTC...TGCTCTTTATTG/TCTATACTAATA...TGTAG|TGG 2 1 25.566
24706976 GT-AG 0 0.0006032144819205 109 Brame.01UG503600.1.v1.1 4721470 6 101769434 101769542 Brachypodium mexicanum 52141 TAG|GTATTTTAGC...TTTGGTTTACTT/TTTTGGTTTACT...TGCAG|GTG 1 1 32.976
24706977 GT-AG 0 0.0002009598879973 90 Brame.01UG503600.1.v1.1 4721470 7 101769764 101769853 Brachypodium mexicanum 52141 CAG|GTACCGCACA...GCCTATTTAATT/GCCTATTTAATT...AATAG|GTT 0 1 38.242
24706978 GT-AG 0 1.000000099473604e-05 839 Brame.01UG503600.1.v1.1 4721470 8 101770195 101771033 Brachypodium mexicanum 52141 GCG|GTCAGTGCAT...TTCTCCTAAATT/TGTTTATTCATT...TTCAG|GAC 2 1 46.366
24706979 GT-AG 0 1.000000099473604e-05 255 Brame.01UG503600.1.v1.1 4721470 9 101771813 101772067 Brachypodium mexicanum 52141 CAG|GTAAGCATTT...TGATCAGTGACT/TAATGACTGATC...TCCAG|CAA 1 1 64.927
24706980 GT-AG 0 1.000000099473604e-05 1131 Brame.01UG503600.1.v1.1 4721470 10 101772310 101773440 Brachypodium mexicanum 52141 CAG|GTTAGCTCTT...TATTTCTTCCTT/ATGGAGCTCATA...TTTAG|AAA 0 1 70.693

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