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

✎ 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
128511040 GT-AG 0 0.0012415256740413 101 rna-XM_019397438.1 23617119 1 108593368 108593468 Nicotiana attenuata 49451 AAA|GTAAACTATA...GTTTATTTAATT/TTTAATTTGATT...GATAG|GTA 2 1 3.471
128511041 GT-AG 0 1.000000099473604e-05 879 rna-XM_019397438.1 23617119 2 108592422 108593300 Nicotiana attenuata 49451 GAG|GTGGATTTTT...CAAATTTTGATG/CAAATTTTGATG...TGCAG|ATG 0 1 5.845
128511042 GT-AG 0 1.000000099473604e-05 88 rna-XM_019397438.1 23617119 3 108592268 108592355 Nicotiana attenuata 49451 AAG|GTGAAAGACG...CCTTTCTTGATC/CCTTTCTTGATC...TGCAG|GGC 0 1 8.183
128511043 GT-AG 0 0.0013546915375261 113 rna-XM_019397438.1 23617119 4 108592108 108592220 Nicotiana attenuata 49451 TAT|GTAAGTTTCT...CCCTCTTTAATA/CCCTCTTTAATA...GATAG|GGC 2 1 9.848
128511044 GT-AG 0 0.0003171607200705 153 rna-XM_019397438.1 23617119 5 108591909 108592061 Nicotiana attenuata 49451 GAG|GTATGTCCAT...TGTATTTTGATT/TGTATTTTGATT...TGCAG|AAA 0 1 11.477
128511045 GT-AG 0 0.0115824526740786 86 rna-XM_019397438.1 23617119 6 108591742 108591827 Nicotiana attenuata 49451 AAA|GTATGTATTT...TCTTTCCTAATT/TCTTTCCTAATT...GGCAG|TGC 0 1 14.346
128511046 GT-AG 0 1.000000099473604e-05 78 rna-XM_019397438.1 23617119 7 108591621 108591698 Nicotiana attenuata 49451 TTG|GTAAGTTCAG...CTGATTTTGACA/GTGATTCTGATT...TCCAG|GGG 1 1 15.87
128511047 GT-AG 0 1.000000099473604e-05 446 rna-XM_019397438.1 23617119 8 108591125 108591570 Nicotiana attenuata 49451 TCG|GTAAGTTCCG...TATTTTCTATTT/TTCTATTTCATA...TCCAG|GTA 0 1 17.641
128511048 GT-AG 0 0.0042783851564625 367 rna-XM_019397438.1 23617119 9 108590676 108591042 Nicotiana attenuata 49451 TAG|GTATGCAGTT...TTATTATTAGCT/AAGTCATTCATT...ACCAG|GCT 1 1 20.546
128511049 GT-AG 0 0.0001690138338329 110 rna-XM_019397438.1 23617119 10 108590516 108590625 Nicotiana attenuata 49451 TTT|GTAAGATTTC...AGCTTCTTACTT/GAGCTTCTTACT...TTCAG|GAC 0 1 22.317
128511050 GT-AG 0 0.0001705547439912 120 rna-XM_019397438.1 23617119 11 108590322 108590441 Nicotiana attenuata 49451 CTT|GTAAGTCTGC...TAATCCTTATTG/CTAATCCTTATT...TACAG|GAA 2 1 24.938
128511051 GT-AG 0 0.0014153172079246 83 rna-XM_019397438.1 23617119 12 108590187 108590269 Nicotiana attenuata 49451 AGT|GTAAGCTTAC...AATCATTTGACA/AATCATTTGACA...TTCAG|GCT 0 1 26.78
128511052 GT-AG 0 1.000000099473604e-05 261 rna-XM_019397438.1 23617119 13 108589314 108589574 Nicotiana attenuata 49451 CAG|GTAATTTAGC...ATCCCTATAATT/CTATAATTAATT...TGCAG|TTG 0 1 48.459

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