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)

13 rows where transcript_id = 13851117

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
73763374 GT-AG 0 1.000000099473604e-05 608 rna-XM_012996844.1 13851117 1 1507359 1507966 Erythranthe guttata 4155 CCG|GTGGGTGATG...TTCATTTTAATT/TTCATTTTAATT...GACAG|TTT 0 1 9.787
73763375 GT-AG 0 0.0042898163892129 148 rna-XM_012996844.1 13851117 2 1506661 1506808 Erythranthe guttata 4155 CAG|GTATATTCAT...TTCTTCTTGAAA/TTTTTGTTCATT...TGTAG|GTC 1 1 29.291
73763376 GT-AG 0 1.000000099473604e-05 485 rna-XM_012996844.1 13851117 3 1506010 1506494 Erythranthe guttata 4155 CAG|GTGAACTGTC...AAGATTTTAGAT/TTAGATGTTACT...GGCAG|TGA 2 1 35.177
73763377 GT-AG 0 1.000000099473604e-05 89 rna-XM_012996844.1 13851117 4 1505830 1505918 Erythranthe guttata 4155 AGG|GTAATGTTTT...TCCATCTTTTTT/CTAGGGGTTACT...TTCAG|GTT 0 1 38.404
73763378 GT-AG 0 1.000000099473604e-05 152 rna-XM_012996844.1 13851117 5 1505606 1505757 Erythranthe guttata 4155 CAG|GTTGAATAAT...GTTCTCATAACG/CTCGTTCTCATA...TGTAG|GGT 0 1 40.957
73763379 GT-AG 0 2.4035815164453028e-05 492 rna-XM_012996844.1 13851117 6 1504560 1505051 Erythranthe guttata 4155 GAG|GTAATCCCTG...CTTGTCTTCTCA/TCCATGCTCAAG...ATTAG|GGT 2 1 60.603
73763380 GT-AG 0 1.000000099473604e-05 561 rna-XM_012996844.1 13851117 7 1503929 1504489 Erythranthe guttata 4155 CAG|GTGAGTCCCT...GTGACTATGATA/TATTTGCTAACT...TGCAG|AAT 0 1 63.085
73763381 GT-AG 0 1.000000099473604e-05 81 rna-XM_012996844.1 13851117 8 1503752 1503832 Erythranthe guttata 4155 AAG|GTTATCACAC...CAAATTTTATCC/ACAAATTTTATC...TGCAG|GAA 0 1 66.489
73763382 GT-AG 0 1.000000099473604e-05 103 rna-XM_012996844.1 13851117 9 1503308 1503410 Erythranthe guttata 4155 TAG|GTGAGCTTCA...AGATTCTCAATT/TTATGGTTCATT...TGCAG|TTT 2 1 78.582
73763383 GT-AG 0 2.51959711073883e-05 136 rna-XM_012996844.1 13851117 10 1503028 1503163 Erythranthe guttata 4155 GAT|GTAAGCAGAT...AAGTATTTAATT/AAGTATTTAATT...CTCAG|GTA 2 1 83.688
73763384 GT-AG 0 0.0029194776997427 85 rna-XM_012996844.1 13851117 11 1502879 1502963 Erythranthe guttata 4155 GAG|GTACTTTCTC...ATGTTCTTAATA/CATGTTCTTAAT...TGCAG|GAG 0 1 85.957
73763385 GT-AG 0 1.000000099473604e-05 150 rna-XM_012996844.1 13851117 12 1502583 1502732 Erythranthe guttata 4155 TAG|GTGAGATTGA...TTTCCTTGGACT/CTGTTTATCAAT...TTCAG|TTA 2 1 91.135
73763386 GT-AG 0 1.339959030092486e-05 138 rna-XM_012996844.1 13851117 13 1502340 1502477 Erythranthe guttata 4155 CTG|GTAATTACTA...TTGTTCTTACTT/GTTGTTCTTACT...GGCAG|GGC 2 1 94.858

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