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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
20804491 GT-AG 0 0.0004632681371826 3048 rna-XM_010311898.1 4024486 1 273 3320 Balearica regulorum 925459 AAG|GTATGTGTCC...TTGGTTTTATTT/TTTGGTTTTATT...ATTAG|GTT 1 1 3.108
20804492 GT-AG 0 1.000000099473604e-05 1742 rna-XM_010311898.1 4024486 2 3422 5163 Balearica regulorum 925459 AAG|GTAAGGTGGG...ACCCCTTTATTT/TACCCCTTTATT...GAAAG|GTG 0 1 9.385
20804493 GT-AG 0 1.000000099473604e-05 95 rna-XM_010311898.1 4024486 3 5314 5408 Balearica regulorum 925459 AAA|GTGAGTACTG...ACATTCTCAGCT/CACATTCTCAGC...TTCAG|GCA 0 1 18.707
20804494 GT-AG 0 9.814133104448576e-05 874 rna-XM_010311898.1 4024486 4 5486 6359 Balearica regulorum 925459 GAG|GTACTGTTTA...TCTGTATTAATC/CTTCTTTTCACT...TATAG|ACC 2 1 23.493
20804495 GT-AG 0 1.2058167153262e-05 358 rna-XM_010311898.1 4024486 5 6500 6857 Balearica regulorum 925459 CAG|GTAATTTGGC...TGTATTTTGATT/TGTATTTTGATT...TTTAG|GAA 1 1 32.194
20804496 GT-AG 0 1.000000099473604e-05 407 rna-XM_010311898.1 4024486 6 6950 7356 Balearica regulorum 925459 AGG|GTAAGTAATG...GTCATTTTATAA/ATAGTTGTCATT...TACAG|AGC 0 1 37.912
20804497 GT-AG 0 1.000000099473604e-05 1203 rna-XM_010311898.1 4024486 7 7464 8666 Balearica regulorum 925459 CCG|GTAAGAGCAA...CTTCCTTTATTT/TATTTGTTAAAG...AATAG|CAC 2 1 44.562
20804498 GT-AG 0 1.000000099473604e-05 287 rna-XM_010311898.1 4024486 8 8961 9247 Balearica regulorum 925459 CAG|GTAAAGCCAG...AATATCTTGACT/AATATCTTGACT...TTCAG|GAG 2 1 62.834
20804499 GT-AG 0 1.000000099473604e-05 491 rna-XM_010311898.1 4024486 9 9386 9876 Balearica regulorum 925459 CAG|GTTGGTGTCT...CTGATTTTAATT/CTGATTTTAATT...TGTAG|GAG 2 1 71.411
20804500 GT-AG 0 1.000000099473604e-05 1335 rna-XM_010311898.1 4024486 10 9920 11254 Balearica regulorum 925459 CAA|GTGAGTTGCT...TGTTCTTTGCCT/CTGTTTTGGACA...TTTAG|CAT 0 1 74.083
20804501 GT-AG 0 1.000000099473604e-05 743 rna-XM_010311898.1 4024486 11 11377 12119 Balearica regulorum 925459 GCG|GTTAGTACAC...AATTTCATACTT/AGGAATTTCATA...TGCAG|GGA 2 1 81.666
20804502 GT-AG 0 0.009643051260917 125 rna-XM_010311898.1 4024486 12 12233 12357 Balearica regulorum 925459 AAG|GTATGCTTCT...AGAATTTGAACT/AAGAATTTGAAC...TTTAG|GTG 1 1 88.689
20804503 GT-AG 0 1.000000099473604e-05 135 rna-XM_010311898.1 4024486 13 12410 12544 Balearica regulorum 925459 AGG|GTAAGAACTT...ATTGTCTCAATC/AATTGTCTCAAT...TCTAG|GCG 2 1 91.92

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