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

✎ 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
166400122 GT-AG 0 1.000000099473604e-05 17341 rna-XM_037489386.1 29769685 2 23960954 23978294 Pungitius pungitius 134920 GCT|GTAAGAGCGA...CAACCCTTTGCC/CTCGCTCTGACA...CGCAG|TAA 2 1 2.213
166400123 GT-AG 0 1.000000099473604e-05 938 rna-XM_037489386.1 29769685 3 23978398 23979335 Pungitius pungitius 134920 AAG|GTAGGATGCA...GGTACCTGAGCA/GTGACTTTCACA...CGCAG|GTC 0 1 4.363
166400124 GT-AG 0 1.000000099473604e-05 8590 rna-XM_037489386.1 29769685 4 23979447 23988036 Pungitius pungitius 134920 ACG|GTGAGTGGCG...TTTTCCTTCTCT/TTAACTCTGACA...CTTAG|ATC 0 1 6.681
166400125 GT-AG 0 1.000000099473604e-05 293 rna-XM_037489386.1 29769685 5 23988097 23988389 Pungitius pungitius 134920 AAG|GTGAGCAGAA...TTTTCTCTGATC/TTTTCTCTGATC...TGCAG|AAA 0 1 7.933
166400126 GT-AG 0 1.000000099473604e-05 512 rna-XM_037489386.1 29769685 6 23988522 23989033 Pungitius pungitius 134920 CAG|GTGATTTTGC...TGTTTCTCTATG/ATTGTACATATT...TTCAG|GGT 0 1 10.689
166400127 GT-AG 0 1.000000099473604e-05 520 rna-XM_037489386.1 29769685 7 23989302 23989821 Pungitius pungitius 134920 ATG|GTGAACCTCT...CTGTTTTTATCT/TCTGTTTTTATC...CGTAG|AAC 1 1 16.284
166400128 GT-AG 0 1.000000099473604e-05 1534 rna-XM_037489386.1 29769685 8 23993198 23994731 Pungitius pungitius 134920 CAG|GTAGTGCACC...TGGTCATTCCCA/TCGATGGTCATT...CCCAG|CAG 2 1 86.764
166400129 GT-AG 0 1.000000099473604e-05 804 rna-XM_037489386.1 29769685 9 23994894 23995697 Pungitius pungitius 134920 GGG|GTCAGTAACC...ATGCGATTGACG/ATGCGATTGACG...AACAG|GAA 2 1 90.146
166400130 GT-AG 0 9.23297211840517e-05 428 rna-XM_037489386.1 29769685 10 23995782 23996209 Pungitius pungitius 134920 CAG|GTAACTGGTG...AGTACTGTAACT/CCCGTGCTGACG...CACAG|TGA 2 1 91.9
166400131 GT-AG 0 1.000000099473604e-05 7322 rna-XM_037489386.1 29769685 11 23996260 24003581 Pungitius pungitius 134920 TCG|GTGGGTGTCG...GTCTCCTTTGGG/TAGGGCTACACC...TTCAG|AGG 1 1 92.944
166400132 GT-AG 0 3.162922166494615e-05 1431 rna-XM_037489386.1 29769685 12 24003767 24005197 Pungitius pungitius 134920 AAG|GTAGGCTCAC...TGCGTCTTTGCT/TTTCATTTCACA...CTCAG|TTT 0 1 96.806
166411352 GT-AG 0 1.1054510840823237e-05 13726 rna-XM_037489386.1 29769685 1 23947144 23960869 Pungitius pungitius 134920 AAG|GTACGTCGTC...CTCCTTTTATCC/TCTCCTTTTATC...TTTAG|GAG   0 1.294

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