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)

11 rows where transcript_id = 23988683

✎ 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
130513040 GT-AG 0 0.0023071271783099 1375 rna-gnl|WGS:VZSG|NOTPEN_R09829_mrna 23988683 1 4302574 4303948 Nothoprocta pentlandii 2585814 CTG|GTATGTATAT...TGTCTCTTATTT/CTTATTTTTATC...TATAG|ATG 0 1 3.139
130513041 GT-AG 0 1.000000099473604e-05 3162 rna-gnl|WGS:VZSG|NOTPEN_R09829_mrna 23988683 2 4299328 4302489 Nothoprocta pentlandii 2585814 AAC|GTGAGTATTT...GTTTCTTTGAGC/TTTTTTTGCATT...TACAG|GTA 0 1 7.324
130513042 GT-AG 0 1.000000099473604e-05 1294 rna-gnl|WGS:VZSG|NOTPEN_R09829_mrna 23988683 3 4297941 4299234 Nothoprocta pentlandii 2585814 CAG|GTAATTAAAC...CAGTGTTTAATC/GCGTGTTTCATC...TGCAG|ATT 0 1 11.958
130513043 GT-AG 0 0.0002584141172069 1902 rna-gnl|WGS:VZSG|NOTPEN_R09829_mrna 23988683 4 4295848 4297749 Nothoprocta pentlandii 2585814 AAA|GTAAGCTAGT...CATTTTGTAACA/CATTTTGTAACA...TTTAG|ATA 2 1 21.475
130513044 GT-AG 0 1.000000099473604e-05 322 rna-gnl|WGS:VZSG|NOTPEN_R09829_mrna 23988683 5 4295332 4295653 Nothoprocta pentlandii 2585814 AAG|GTAAAGTGCC...GCTCTCGTGTCT/TGCGGACTAAGC...CATAG|ATA 1 1 31.141
130513045 GT-AG 0 4.307873981459202e-05 1388 rna-gnl|WGS:VZSG|NOTPEN_R09829_mrna 23988683 6 4293861 4295248 Nothoprocta pentlandii 2585814 GGG|GTACGTGCTC...TGTCTTTTAATG/TGTCTTTTAATG...CATAG|GAA 0 1 35.277
130513046 GT-AG 0 7.34158456001297e-05 468 rna-gnl|WGS:VZSG|NOTPEN_R09829_mrna 23988683 7 4292858 4293325 Nothoprocta pentlandii 2585814 TGA|GTCCATCATC...GTTCCCATATCA/TGGATGCTTACG...CGGAG|ATT 1 1 61.933
130513047 GT-AG 0 0.0001368324451317 1035 rna-gnl|WGS:VZSG|NOTPEN_R09829_mrna 23988683 8 4291502 4292536 Nothoprocta pentlandii 2585814 TTA|GTGGCAACAT...TCTTTCTTAATT/TCTTTCTTAATT...TGAAG|AAA 1 1 77.927
130513048 GT-AG 0 2.3125816391937847e-05 902 rna-gnl|WGS:VZSG|NOTPEN_R09829_mrna 23988683 9 4290431 4291332 Nothoprocta pentlandii 2585814 CAG|GTATTACACA...TTTGCTTTTACA/TATTTACTAATT...TTCAG|AAC 2 1 86.348
130513049 GT-AG 0 1.000000099473604e-05 736 rna-gnl|WGS:VZSG|NOTPEN_R09829_mrna 23988683 10 4289634 4290369 Nothoprocta pentlandii 2585814 AAG|GTAAGAATAT...ATGTTCTCATTT/TATGTTCTCATT...TTAAG|GAA 0 1 89.387
130513050 GT-AG 0 1.000000099473604e-05 1395 rna-gnl|WGS:VZSG|NOTPEN_R09829_mrna 23988683 11 4288177 4289571 Nothoprocta pentlandii 2585814 CAG|GTGAGAGACT...TGGTCTTTACAG/CTGGTCTTTACA...TTTAG|GAA 2 1 92.476

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