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)

12 rows where transcript_id = 23404079

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase, in_cds

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
127494976 GT-AG 0 1.000000099473604e-05 16209 rna-XM_024747540.1 23404079 2 178231 194439 Neophocaena asiaeorientalis 189058 AAA|GTAATGGTTT...TCCCTTTTATAT/TTCCCTTTTATA...TTAAG|GAA 0 1 26.233
127494977 GT-AG 0 3.998972351491072e-05 1528 rna-XM_024747540.1 23404079 3 176564 178091 Neophocaena asiaeorientalis 189058 GAG|GTTTGTTAAT...GTTTTCTAGATT/GTGAAAGTCATG...CTTAG|AAG 1 1 34.693
127494978 GT-AG 0 1.000000099473604e-05 5926 rna-XM_024747540.1 23404079 4 170488 176413 Neophocaena asiaeorientalis 189058 ATG|GTAAATATAA...GAGCTTTTAAGT/CAATTAATCATG...TTCAG|GAA 1 1 43.822
127494979 GT-AG 0 1.000000099473604e-05 3979 rna-XM_024747540.1 23404079 5 166296 170274 Neophocaena asiaeorientalis 189058 CAG|GTAAATAAGA...TTGTTTTTCACT/TTGTTTTTCACT...AATAG|CAC 1 1 56.786
127494980 GT-AG 0 9.12696917609532e-05 296 rna-XM_024747540.1 23404079 6 165921 166216 Neophocaena asiaeorientalis 189058 CCC|GTGAGTTTTT...ATTTTCTTAAAA/TTTATATTTACA...TATAG|CTA 2 1 61.595
127494981 GT-AG 0 1.000000099473604e-05 2756 rna-XM_024747540.1 23404079 7 163053 165808 Neophocaena asiaeorientalis 189058 TTG|GTAAGTATAT...ATGTCCTTTTTA/TCTTGGTTCATT...TTAAG|GAT 0 1 68.411
127494982 GT-AG 0 1.000000099473604e-05 10230 rna-XM_024747540.1 23404079 8 152736 162965 Neophocaena asiaeorientalis 189058 CAG|GTAATTAAAA...CCTGTTTTATAT/TCCTGTTTTATA...TTCAG|GTT 0 1 73.707
127494983 GT-AG 0 1.000000099473604e-05 104 rna-XM_024747540.1 23404079 9 152569 152672 Neophocaena asiaeorientalis 189058 GAG|GTAAATATAC...TTCCCCTGAATT/TGTATAATGATT...TATAG|ATC 0 1 77.541
127494984 GT-AG 0 9.637317214980642e-05 3258 rna-XM_024747540.1 23404079 10 149231 152488 Neophocaena asiaeorientalis 189058 CAG|GTAAATTTAA...TTTTTTTTAGTT/TTTGTTTTTACT...TTTAG|GCA 2 1 82.41
127494985 GT-AG 0 1.000000099473604e-05 1766 rna-XM_024747540.1 23404079 11 147338 149103 Neophocaena asiaeorientalis 189058 CAG|GTAGGAAGAG...AATTACTTATTT/TAATTACTTATT...TTTAG|CTA 0 1 90.14
127494986 GT-AG 0 3.039146509942716e-05 992 rna-XM_024747540.1 23404079 12 146250 147241 Neophocaena asiaeorientalis 189058 CTG|GTAGGTCTAT...ATGTCTTTGAAA/ATGTCTTTGAAA...CACAG|AAT 0 1 95.983
127494997 GT-AG 0 3.2230539189470004e-05 17755 rna-XM_024747540.1 23404079 1 194650 212404 Neophocaena asiaeorientalis 189058 TAG|GTAATCCCAC...TTAATTTTAATA/TTAATTTTAATA...TATAG|TTT   0 14.912

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