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

✎ 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
118585024 GT-AG 0 1.000000099473604e-05 23301 rna-XM_016221307.1 21894411 2 31736317 31759617 Miniopterus natalensis 291302 AAG|GTAAGATAAA...ACATCTTTATAT/AACATCTTTATA...TACAG|ATC 0 1 31.875
118585025 GT-AG 0 1.000000099473604e-05 3602 rna-XM_016221307.1 21894411 3 31759727 31763328 Miniopterus natalensis 291302 ATG|GTAAGTACAC...GGTGTTTTATTA/CGGTGTTTTATT...TCTAG|GCA 1 1 36.417
118585026 GT-AG 0 1.000000099473604e-05 1484 rna-XM_016221307.1 21894411 4 31763379 31764862 Miniopterus natalensis 291302 AAG|GTAAGATTAA...ATTCTCTTCTCA/TCTCTTCTCATT...TCTAG|AAC 0 1 38.5
118585027 GT-AG 0 1.000000099473604e-05 13428 rna-XM_016221307.1 21894411 5 31765110 31778537 Miniopterus natalensis 291302 CAG|GTCAGTAGTT...ATGTTTTTAGTT/TTTTAGTTTATC...TACAG|AAG 1 1 48.792
118585028 GT-AG 0 1.000000099473604e-05 1304 rna-XM_016221307.1 21894411 6 31778745 31780048 Miniopterus natalensis 291302 GAG|GTAAAGTGAT...TTCCCCTTGACA/GAAGTGCTCAAC...TTTAG|GCC 1 1 57.417
118585029 GT-AG 0 1.000000099473604e-05 17999 rna-XM_016221307.1 21894411 7 31780185 31798183 Miniopterus natalensis 291302 CTG|GTGAGTAGCT...TTGTCTTTGATT/TTGTCTTTGATT...CCCAG|CAT 2 1 63.083
118585030 GT-AG 0 2.546251951476035e-05 6264 rna-XM_016221307.1 21894411 8 31798243 31804506 Miniopterus natalensis 291302 CCA|GTAAGTACAC...TCCTTCTTATTT/TTCCTTCTTATT...GGCAG|TGG 1 1 65.542
118585031 GT-AG 0 1.000000099473604e-05 2406 rna-XM_016221307.1 21894411 9 31804617 31807022 Miniopterus natalensis 291302 AAG|GTCAGTTCCA...GTGTGCTTCTCT/GCGGAACTAACT...TCCAG|CAC 0 1 70.125
118585032 GT-AG 0 1.6653285170843687e-05 2841 rna-XM_016221307.1 21894411 10 31807126 31809966 Miniopterus natalensis 291302 AAA|GTGAGTTTTG...CGGCCCTTAATG/TGCCTCCTGATT...TGCAG|TTA 1 1 74.417
118585033 GT-AG 0 1.000000099473604e-05 2650 rna-XM_016221307.1 21894411 11 31810188 31812837 Miniopterus natalensis 291302 CAG|GTAGGTGCTC...GTCTCCTTTTCT/TGGCATCTAACA...CGTAG|AAT 0 1 83.625
118585756 GT-AG 0 1.000000099473604e-05 53644 rna-XM_016221307.1 21894411 1 31682612 31736255 Miniopterus natalensis 291302 CAG|GTAAGTAGCA...AAAACTTTAAAG/TTAAAGTTAATC...TACAG|GGC   0 30.25

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