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

✎ 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
141263347 GT-AG 0 1.000000099473604e-05 112 rna-XM_012803860.2 25571522 2 34809397 34809508 Otolemur garnettii 30611 CAG|GTAAGAGACT...CTGTCCTTTTCC/CATTTAGTCATC...CTTAG|GTG 0 1 9.951
141263348 GT-AG 0 1.000000099473604e-05 355 rna-XM_012803860.2 25571522 3 34808412 34808766 Otolemur garnettii 30611 CCG|GTTAGCACGC...CCTTTGTTAATC/CCTTTGTTAATC...CCTAG|GTG 0 1 30.439
141263349 GT-AG 0 1.000000099473604e-05 192 rna-XM_012803860.2 25571522 4 34808061 34808252 Otolemur garnettii 30611 CAG|GTAGGACTGG...GTCTCTTTATAA/TTCTTTCTGATA...TACAG|GTG 0 1 35.61
141263350 GT-AG 0 1.000000099473604e-05 194 rna-XM_012803860.2 25571522 5 34807780 34807973 Otolemur garnettii 30611 AAG|GTGAGAGGGG...TTTCCCTTCCCT/AATTTCCAAACT...TCCAG|ACC 0 1 38.439
141263351 GT-AG 0 0.0001022863939962 4487 rna-XM_012803860.2 25571522 6 34803125 34807611 Otolemur garnettii 30611 CGG|GTATGGCCTT...GACCTCTTATAG/CTTATAGTGACT...CCCAG|CTC 0 1 43.902
141263352 GT-AG 0 0.0010960457336875 214 rna-XM_012803860.2 25571522 7 34802831 34803044 Otolemur garnettii 30611 CAG|GTACCTGGAG...TTTCTGTTATCT/TCCTTCCTGATC...CTCAG|GTA 2 1 46.504
141263353 GT-AG 0 1.000000099473604e-05 718 rna-XM_012803860.2 25571522 8 34801949 34802666 Otolemur garnettii 30611 GAG|GTGGGCCTAA...GTCTCCTTGATT/ATTTCTCTTATA...TGTAG|GCC 1 1 51.837
141263354 GT-AG 0 2.280136606509181e-05 2526 rna-XM_012803860.2 25571522 9 34798643 34801168 Otolemur garnettii 30611 CTG|GTAAGCTACT...CAGGCCTTGTAT/AATGTGTTCAGG...CCCAG|GCC 1 1 77.203
141263355 GT-AG 0 1.000000099473604e-05 158 rna-XM_012803860.2 25571522 10 34798306 34798463 Otolemur garnettii 30611 CAG|GTGTGCGATG...AAGGACATATCA/AGAAATGTCATG...CATAG|GTT 0 1 83.024
141263356 GT-AG 0 1.000000099473604e-05 2583 rna-XM_012803860.2 25571522 11 34795560 34798142 Otolemur garnettii 30611 TAG|GTGAGGCTCA...GGTTCCTTGATC/CCCCTGTTTATT...CCCAG|TGA 1 1 88.325
141265986 GT-AG 0 0.0006266698552195 10219 rna-XM_012803860.2 25571522 1 34809837 34820055 Otolemur garnettii 30611 ACG|GTACGCGTGA...TTATGTTTATCT/TTTATGTTTATC...ATTAG|ATT   0 5.463

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