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

✎ 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
116462661 GT-AG 0 1.000000099473604e-05 929 rna-XM_021637361.1 21550645 2 1294818 1295746 Meriones unguiculatus 10047 CCT|GTGAGTAACC...CACTTCTGAACA/CATTGGCTGAAT...CCTAG|GAT 0 1 12.845
116462662 GT-AG 0 1.000000099473604e-05 706 rna-XM_021637361.1 21550645 3 1293974 1294679 Meriones unguiculatus 10047 AAG|GTAAGACACA...TGTTTCTTTCCT/TTCCTACTAAGT...TTTAG|CCC 0 1 18.793
116462663 GT-AG 0 1.000000099473604e-05 716 rna-XM_021637361.1 21550645 4 1293110 1293825 Meriones unguiculatus 10047 CAG|GTAAAAGGAG...ATGTCCTTGTCT/GAAATACTGAGC...TGAAG|GTA 1 1 25.172
116462664 GT-AG 0 1.000000099473604e-05 1742 rna-XM_021637361.1 21550645 5 1291153 1292894 Meriones unguiculatus 10047 AAG|GTGAGCTTTC...ACTTCCTTGTTT/CTGGAGTTCACT...CACAG|AAA 0 1 34.44
116462665 GT-AG 0 1.000000099473604e-05 2408 rna-XM_021637361.1 21550645 6 1288373 1290780 Meriones unguiculatus 10047 AAA|GTAAGTGGGG...GTCTTCTTACAC/GGTCTTCTTACA...TACAG|AGG 0 1 50.474
116462666 GT-AG 0 0.0023067693339354 2493 rna-XM_021637361.1 21550645 7 1285751 1288243 Meriones unguiculatus 10047 CAG|GTAACCCAGG...CTGTCCTTCTCT/CGGGTGGTCAGC...CCCAG|GAT 0 1 56.034
116462667 GT-AG 0 1.000000099473604e-05 846 rna-XM_021637361.1 21550645 8 1284713 1285558 Meriones unguiculatus 10047 CAG|GTGAGGGCAA...CTCACTTTGATC/CATTGTCTCACT...CGCAG|ACT 0 1 64.31
116462668 GT-AG 0 1.000000099473604e-05 349 rna-XM_021637361.1 21550645 9 1284313 1284661 Meriones unguiculatus 10047 CAG|GTGCTTACAC...GTCCGCTTAGCT/TGTCCGCTTAGC...TCCAG|CTG 0 1 66.509
116462669 GT-AG 0 1.000000099473604e-05 2353 rna-XM_021637361.1 21550645 10 1281718 1284070 Meriones unguiculatus 10047 CAG|GTGGGTGACC...GCTTCCTGTGTT/AACAGACTCAGT...CTCAG|ACA 2 1 76.94
116462670 GT-AG 0 0.0001197094658905 949 rna-XM_021637361.1 21550645 11 1280476 1281424 Meriones unguiculatus 10047 TGT|GTAAGTTGTG...GACCTCTTGGCG/AGCTGTCTCACT...CACAG|CAA 1 1 89.569
116462671 GT-AG 0 1.000000099473604e-05 656 rna-XM_021637361.1 21550645 12 1279694 1280349 Meriones unguiculatus 10047 AAG|GTAAGCATGG...CCACCCTTGTGT/ACACTGCTCAGT...TGCAG|AGA 1 1 95.0
116463355 GT-AG 0 0.0042282283031524 12235 rna-XM_021637361.1 21550645 1 1296055 1308289 Meriones unguiculatus 10047 CAA|GTACGCCTTT...GCTTCTTTGCTT/CCCAGAGTGATA...TGCAG|GTG   0 3.664

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