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

✎ 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
128510711 GT-AG 0 0.0002115004917191 139 rna-XM_019369595.1 23617090 1 15523214 15523352 Nicotiana attenuata 49451 TTG|GTAAGCATTA...GTTCCTTTGAAA/GAAATATTCATT...TATAG|GTA 0 1 14.066
128510712 GT-AG 0 2.632577314187372e-05 1046 rna-XM_019369595.1 23617090 2 15522081 15523126 Nicotiana attenuata 49451 GAG|GTAATTTTGG...TTTCTTTTGGCA/TTGGCACTTATG...TGCAG|GTG 0 1 16.859
128510713 GT-AG 0 0.008714593044282 309 rna-XM_019369595.1 23617090 3 15521662 15521970 Nicotiana attenuata 49451 AAA|GTATGTATCT...TTCTCATTATTT/TACTTTCTCATT...TGTAG|CTA 2 1 20.392
128510714 GT-AG 0 0.0001332885820817 450 rna-XM_019369595.1 23617090 4 15521161 15521610 Nicotiana attenuata 49451 TTG|GTAAGCACTT...TTTCTCTTATCG/CTTTCTCTTATC...GACAG|TGT 2 1 22.03
128510715 GT-AG 0 0.0003540138817434 415 rna-XM_019369595.1 23617090 5 15520574 15520988 Nicotiana attenuata 49451 CCG|GTATTGCTCT...TCAGTGTTATCT/TGTGCGCTAACT...TTTAG|ATA 0 1 27.553
128510716 GT-AG 0 1.000000099473604e-05 115 rna-XM_019369595.1 23617090 6 15520141 15520255 Nicotiana attenuata 49451 GAG|GTAGGATCTT...TGGTTCTTCTCA/GTTCTTCTCATA...CATAG|GCT 0 1 37.765
128510717 GT-AG 0 0.0404546689176718 254 rna-XM_019369595.1 23617090 7 15519683 15519936 Nicotiana attenuata 49451 TAT|GTATGTATCT...TGGTTTTTGACT/TGGTTTTTGACT...ATTAG|GTC 0 1 44.316
128510718 GT-AG 0 1.000000099473604e-05 179 rna-XM_019369595.1 23617090 8 15519018 15519196 Nicotiana attenuata 49451 GAG|GTAATTGATT...TGACTTTTATTT/GTGACTTTTATT...TGCAG|TTG 0 1 59.923
128510719 GT-AG 0 1.000000099473604e-05 635 rna-XM_019369595.1 23617090 9 15518173 15518807 Nicotiana attenuata 49451 CTT|GTGAGTCATC...TGTATCTGAATT/GTGTATCTGAAT...TGTAG|TCT 0 1 66.667
128510720 GT-AG 0 0.0001645858805235 1662 rna-XM_019369595.1 23617090 10 15516322 15517983 Nicotiana attenuata 49451 CAG|GTACTCCCGC...TTGGTTTTTATG/TTGGTTTTTATG...AACAG|CAA 0 1 72.736
128510721 GT-AG 0 1.000000099473604e-05 128 rna-XM_019369595.1 23617090 11 15516030 15516157 Nicotiana attenuata 49451 CCA|GTAAGACTCC...ATGTCTTTCACG/ATGTCTTTCACG...TGAAG|GTT 2 1 78.003
128510722 GT-AG 0 1.000000099473604e-05 95 rna-XM_019369595.1 23617090 12 15515782 15515876 Nicotiana attenuata 49451 AAG|GTTTGAATGC...TTTTCCTTGGTG/AAAGATGTCATC...CGCAG|GAT 2 1 82.916
128510723 GT-AG 0 1.000000099473604e-05 545 rna-XM_019369595.1 23617090 13 15515158 15515702 Nicotiana attenuata 49451 AAG|GTAGTGATCC...ATGGACTTAGCT/ATTTTTCTGACA...TTCAG|GAC 0 1 85.453

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