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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, 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
104136540 GT-AG 0 4.220365008923981e-05 700 rna-XM_015349950.1 19438207 2 34889096 34889795 Lepisosteus oculatus 7918 GAG|GTAAACAGCT...AGGTCTTTAATT/TTTGTTTTAATA...TACAG|GAA 2 1 26.975
104136541 GT-AG 0 1.000000099473604e-05 952 rna-XM_015349950.1 19438207 3 34887148 34888099 Lepisosteus oculatus 7918 GAG|GTTAGTTCTG...CAGTTGTTAATG/TGTGTTTTCACC...CACAG|GTG 2 1 44.501
104136542 GT-AG 0 1.000000099473604e-05 406 rna-XM_015349950.1 19438207 4 34886647 34887052 Lepisosteus oculatus 7918 CAG|GTAAAATTCT...AGTATTTTAAAC/CTTGTTCTAAGT...TGCAG|GTG 1 1 46.173
104136543 GT-AG 0 0.0002246646661542 2630 rna-XM_015349950.1 19438207 5 34883849 34886478 Lepisosteus oculatus 7918 CAG|GTTTGTTTAG...AGACTTTTAATG/CAAGATTTTATT...TTCAG|ATA 1 1 49.129
104136544 GT-AG 0 1.000000099473604e-05 1444 rna-XM_015349950.1 19438207 6 34882247 34883690 Lepisosteus oculatus 7918 GCG|GTAAGGGACG...TCCTCTTTAATC/GCAAATCTAACT...TTTAG|GTT 0 1 51.909
104136545 AA-AG 0 0.0014337659359869 1676 rna-XM_015349950.1 19438207 7 34880342 34882017 Lepisosteus oculatus 7918 CAT|AATACATAGC...TTTTTTTTAACC/TTTTTTTTAACC...CGCAG|CCA 1 1 55.939
104136546 GT-GA 0 1.000000099473604e-05 1546 rna-XM_015349950.1 19438207 8 34878638 34880183 Lepisosteus oculatus 7918 ACG|GTAAGAAACC...AACTTTTTAACA/TTTTTTTTTACT...AGTGA|CAA 0 1 58.719
104136547 GT-AG 0 0.0012810715328518 495 rna-XM_015349950.1 19438207 9 34876746 34877240 Lepisosteus oculatus 7918 CAG|GTATGGTTCT...ACCTCTTTAATT/CTTTAATTCATT...TATAG|AAC 2 1 83.301
104136548 GT-AG 0 1.000000099473604e-05 668 rna-XM_015349950.1 19438207 10 34875983 34876650 Lepisosteus oculatus 7918 CAG|GTAAAATGCT...TACCTTTTACTT/TTTGTGTTTACT...CACAG|GAG 1 1 84.973
104136549 GT-AG 0 1.000000099473604e-05 333 rna-XM_015349950.1 19438207 11 34875482 34875814 Lepisosteus oculatus 7918 CAG|GTAATACGTC...TGGCCTGTAACA/TCAGGATTCATA...TTCAG|GGG 1 1 87.929
104136550 GT-AG 0 1.000000099473604e-05 2070 rna-XM_015349950.1 19438207 12 34873254 34875323 Lepisosteus oculatus 7918 ATG|GTAAGATCAC...CTGTCTTTAAAC/CTGTCTTTAAAC...AACAG|ACT 0 1 90.709
104145810 GT-AG 0 6.334294739808098e-05 1228 rna-XM_015349950.1 19438207 1 34890936 34892163 Lepisosteus oculatus 7918 CGG|GTAAGTTTTG...TTTTCCTTGTAA/TTGTAAATAACC...GGCAG|AAT   0 6.933

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