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

✎ 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
73762965 GT-AG 0 1.000000099473604e-05 611 rna-XM_012974032.1 13851078 1 2028263 2028873 Erythranthe guttata 4155 GAG|GTCAAAAAAC...TTTTTTTTATTA/TTTTTTTTTATT...TGCAG|ATA 1 1 3.663
73762966 GT-AG 0 1.000000099473604e-05 379 rna-XM_012974032.1 13851078 2 2028974 2029352 Erythranthe guttata 4155 TGT|GTGAGTCTCT...AACTCTTTATTT/CTTTATTTTACA...TTTAG|GCA 2 1 6.298
73762967 GT-AG 0 0.0016400839788601 88 rna-XM_012974032.1 13851078 3 2029462 2029549 Erythranthe guttata 4155 CAG|GTATTATTCT...TATATTTTGATA/TATATTTTGATA...TGTAG|GAA 0 1 9.17
73762968 GT-AG 0 0.0009765270992929 110 rna-XM_012974032.1 13851078 4 2031053 2031162 Erythranthe guttata 4155 CAG|GTATGTATTT...TCAATTTTAATT/TCGATTTTCACT...GGTAG|GTT 0 1 48.775
73762969 GT-AG 0 1.000000099473604e-05 91 rna-XM_012974032.1 13851078 5 2031406 2031496 Erythranthe guttata 4155 CAG|GTGAATTTTC...TTTGCACTAACA/TTTGCACTAACA...TGCAG|GTT 0 1 55.178
73762970 GT-AG 0 1.5843520607638265e-05 89 rna-XM_012974032.1 13851078 6 2031809 2031897 Erythranthe guttata 4155 CAA|GTAAGTTTCG...TTTTTCGGAATA/AATGTGCTGAAA...TGCAG|GCT 0 1 63.399
73762971 GT-AG 0 0.000173619930276 749 rna-XM_012974032.1 13851078 7 2032138 2032886 Erythranthe guttata 4155 AAG|GTATTATTTT...TTATCGATGATG/GACATAATTATC...TGTAG|GTT 0 1 69.723
73762972 GT-AG 0 0.0005148201786239 83 rna-XM_012974032.1 13851078 8 2033172 2033254 Erythranthe guttata 4155 AGG|GTATGTGTTA...TATCCCGTATTT/CGAATATTTATC...TTCAG|GAG 0 1 77.233
73762973 GT-AG 0 1.000000099473604e-05 107 rna-XM_012974032.1 13851078 9 2033477 2033583 Erythranthe guttata 4155 CAG|GTAGGTCTCG...TTATTTTTATTT/ATTATTTTTATT...TATAG|GCT 0 1 83.083
73762974 GT-AG 0 1.000000099473604e-05 216 rna-XM_012974032.1 13851078 10 2033746 2033961 Erythranthe guttata 4155 AAG|GTGAGAGAAT...ATTTTCTTGGCA/TGGGCGCTAATT...AATAG|GTT 0 1 87.352
73762975 GT-AG 0 0.0008251184438943 158 rna-XM_012974032.1 13851078 11 2034097 2034254 Erythranthe guttata 4155 GAG|GTAATCTTAC...TTAGTTTTAGTG/ATTTAATTCATC...CACAG|CTT 0 1 90.909

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