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

✎ 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
89669917 GT-AG 0 6.821091102824377e-05 14506 rna-XM_010564237.1 16823342 1 1073572 1088077 Haliaeetus leucocephalus 52644 CGC|GTAAGTATCA...TTCATCCTAATT/TTCATCCTAATT...AACAG|CTC 1 1 0.227
89669918 GT-AG 0 1.000000099473604e-05 2187 rna-XM_010564237.1 16823342 2 1088134 1090320 Haliaeetus leucocephalus 52644 AGG|GTAAGATGCA...CTTGTCTTATTT/CTGTGTCTGATC...TGCAG|ACA 0 1 2.045
89669919 GT-AG 0 1.000000099473604e-05 665 rna-XM_010564237.1 16823342 3 1090397 1091061 Haliaeetus leucocephalus 52644 AAG|GTATGGCACA...GATGCCATATTA/ATATTATTTACT...AACAG|AGA 1 1 4.512
89669920 GT-AG 0 1.000000099473604e-05 1458 rna-XM_010564237.1 16823342 4 1091224 1092681 Haliaeetus leucocephalus 52644 TTG|GTAAGGCCAG...AATTTCTTATTC/TAATTTCTTATT...TTCAG|TTG 1 1 9.77
89669921 GT-AG 0 1.000000099473604e-05 461 rna-XM_010564237.1 16823342 5 1092858 1093318 Haliaeetus leucocephalus 52644 CAG|GTGAGAATGT...TATGCCTTTTTC/TGTGTATTCATT...TGCAG|GGT 0 1 15.482
89669922 GT-AG 0 0.0001144490139112 506 rna-XM_010564237.1 16823342 6 1093475 1093980 Haliaeetus leucocephalus 52644 AAG|GTACTATTTT...TCCTCCTTTTCT/TCCATTCTCACT...AATAG|CAA 0 1 20.545
89669923 GT-AG 0 0.0001877954012678 355 rna-XM_010564237.1 16823342 7 1094232 1094586 Haliaeetus leucocephalus 52644 AAA|GTATGGGTCC...TTGGTTTTGATG/TGTTTTTTCATT...TGCAG|GCC 2 1 28.692
89669924 GT-AG 0 2.1318975700074617e-05 277 rna-XM_010564237.1 16823342 8 1094759 1095035 Haliaeetus leucocephalus 52644 AAG|GTAAATGTCT...GTTCTCTTAATG/TGTTCTCTTAAT...ACCAG|GTA 0 1 34.275
89669925 GT-AG 0 1.000000099473604e-05 1177 rna-XM_010564237.1 16823342 9 1096152 1097328 Haliaeetus leucocephalus 52644 CAG|GTAGGCAAGG...TAGCCTTTTGTT/TAACTTCTCATG...TCCAG|AGA 0 1 70.497
89669926 GT-AG 0 0.0167199016387528 2186 rna-XM_010564237.1 16823342 10 1097503 1099688 Haliaeetus leucocephalus 52644 AAG|GTAGCTTACT...TCTGCCTTCATT/TCTGCCTTCATT...AACAG|CCC 0 1 76.144
89669927 GT-AG 0 1.000000099473604e-05 409 rna-XM_010564237.1 16823342 11 1099863 1100271 Haliaeetus leucocephalus 52644 CAG|GTGAGAGCAG...TAATCCTGTGCT/AGGAAGCTAATC...CCCAG|GAG 0 1 81.792
89669928 GT-AG 0 1.000000099473604e-05 421 rna-XM_010564237.1 16823342 12 1100333 1100753 Haliaeetus leucocephalus 52644 GAG|GTAAGGAGAC...CTGGCCTGACTG/CCTGGCCTGACT...TACAG|AGA 1 1 83.772

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