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

✎ 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
213116247 GT-AG 0 1.000000099473604e-05 93 rna-NM_001360559.1 38490426 1 13922834 13922926 Zea mays 4577 GAG|GTTAGTTTTT...TGTTCCATAACT/AATGCATTTATA...TGCAG|ATT 0 1 54.018
213116248 GT-AG 0 0.0005404687477182 113 rna-NM_001360559.1 38490426 2 13922592 13922704 Zea mays 4577 CAG|GTATGTATAC...CATTGCTTAACT/TTTTTGTTCATT...TGTAG|AGC 0 1 56.851
213116249 GT-AG 0 1.000000099473604e-05 103 rna-NM_001360559.1 38490426 3 13922300 13922402 Zea mays 4577 AAG|GTGGATCTGA...TTGTTCTTACAA/TTTGTTCTTACA...CCTAG|GAT 0 1 61.001
213116250 GT-AG 0 1.5419273992618178e-05 7672 rna-NM_001360559.1 38490426 4 13914560 13922231 Zea mays 4577 ATT|GTAAGTGACT...CTAATTTTGACC/CTAATTTTGACC...TGCAG|TCA 2 1 62.495
213116251 GT-AG 0 0.0076080028695564 875 rna-NM_001360559.1 38490426 5 13913125 13913999 Zea mays 4577 AAG|GTAGCTCTTT...GTTCCTTTCACA/TTGTTTATGATC...TTCAG|TTG 1 1 74.791
213116252 GT-AG 0 3.141739765219646 2399 rna-NM_001360559.1 38490426 6 13910627 13913025 Zea mays 4577 TTG|GTACCCTTTT...TTTGTTTTAAGG/TGATTTCTCACT...TTAAG|GAT 1 1 76.965
213116253 GT-AG 0 8.760312071714659e-05 79 rna-NM_001360559.1 38490426 7 13910432 13910510 Zea mays 4577 CAG|GTAAGCTTAG...TTCTCTATGATT/TCTCTGTTTACC...TGCAG|TCA 0 1 79.513
213116254 GT-AG 0 1.000000099473604e-05 117 rna-NM_001360559.1 38490426 8 13910105 13910221 Zea mays 4577 GAG|GTAAATCAAT...TGTTCCTTGGCT/CAGATTCTTATA...GGCAG|GGC 0 1 84.124
213116255 GT-AG 0 1.000000099473604e-05 122 rna-NM_001360559.1 38490426 9 13909710 13909831 Zea mays 4577 AAG|GTTAGTTTTC...GTTTCGCTAACT/GTTTCGCTAACT...TTCAG|ATG 0 1 90.119
213116256 GT-AG 0 8.741558052750063e-05 329 rna-NM_001360559.1 38490426 10 13909233 13909561 Zea mays 4577 TTG|GTAAGCCTTT...CTCTACTTACCT/CCTCTACTTACC...TTTAG|TTT 1 1 93.368
213116257 GT-AG 0 2.1019560647121007e-05 704 rna-NM_001360559.1 38490426 11 13908395 13909098 Zea mays 4577 GTG|GTATGGCCAA...GCTTTTTTACTC/TGCTTTTTTACT...TGCAG|GTT 0 1 96.311
213116258 GT-AG 0 0.0003409028378897 86 rna-NM_001360559.1 38490426 12 13908228 13908313 Zea mays 4577 AAG|GTAACCCAAT...CTGTTCGTACTA/TTCGTACTAATG...TGCAG|GTT 0 1 98.09

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