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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase, in_cds

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
55534312 GT-AG 0 1.000000099473604e-05 951 rna-XM_023078350.1 10113136 2 2863390 2864340 Cucurbita moschata 3662 CAG|GTAAAGAGAT...TATTTCTTGATT/TATTTCTTGATT...TGCAG|GCG 2 1 6.862
55534313 GT-AG 0 9.173405203942968e-05 257 rna-XM_023078350.1 10113136 3 2864401 2864657 Cucurbita moschata 3662 TCG|GTATTGGTTT...TTTTTTTTCTCA/TTTTTTCTCACA...CTTAG|GCT 2 1 7.701
55534314 GT-AG 0 1.000000099473604e-05 537 rna-XM_023078350.1 10113136 4 2864764 2865300 Cucurbita moschata 3662 GAG|GTGCATCTTT...TTTGTCTTTGTT/ATGCAATTTATT...GTCAG|GAG 0 1 9.182
55534315 GT-AG 0 0.0066143114912737 157 rna-XM_023078350.1 10113136 5 2865370 2865526 Cucurbita moschata 3662 GAT|GTATGTTACT...TTTCTCTTTCTC/AAGAAACTTATT...TCCAG|GCT 0 1 10.147
55534316 GT-AG 0 1.000000099473604e-05 93 rna-XM_023078350.1 10113136 6 2865581 2865673 Cucurbita moschata 3662 AAG|GTGAAACTTT...CATTTGTTAATC/GTTAATCTCATT...GACAG|GCT 0 1 10.901
55534317 GT-AG 0 0.0031301158019837 1761 rna-XM_023078350.1 10113136 7 2865782 2867542 Cucurbita moschata 3662 GAG|GTACTCCTTC...CCTCACTTAATT/CCACTCCTCACT...TGCAG|GGT 0 1 12.411
55534318 GT-AG 0 1.000000099473604e-05 83 rna-XM_023078350.1 10113136 8 2867693 2867775 Cucurbita moschata 3662 CAG|GTGAATGTGC...ACAATTTTGAAT/TATGGTTTTACA...TACAG|GTG 0 1 14.507
55534319 GT-AG 0 1.293389746057027e-05 96 rna-XM_023078350.1 10113136 9 2868124 2868219 Cucurbita moschata 3662 GAG|GTATTAAATC...GAGTATTTAGTT/TTTAGTTTCATC...CTCAG|GAA 0 1 19.371
55534320 GT-AG 0 8.183954671428514e-05 708 rna-XM_023078350.1 10113136 10 2870640 2871347 Cucurbita moschata 3662 AAG|GTGCACTATC...TGTCTCTTACCA/GTTTATCTCAAT...TGCAG|GTA 2 1 53.194
55534321 GT-AG 0 2.0771428595102732e-05 254 rna-XM_023078350.1 10113136 11 2873907 2874160 Cucurbita moschata 3662 TAG|GTAAATTTAG...TTTTTCTAAAAA/GTTTTTCTAAAA...TGCAG|GGA 2 1 88.959
55534322 GT-AG 0 1.000000099473604e-05 642 rna-XM_023078350.1 10113136 12 2874495 2875136 Cucurbita moschata 3662 CAG|GTTAGCCATC...GTTGTTTTGAAT/TTTGAATTAATT...GACAG|AAT 0 1 93.627
55540885 GT-AG 0 3.5374909270128284e-05 897 rna-XM_023078350.1 10113136 1 2862226 2863122 Cucurbita moschata 3662 CAG|GTTTTTCCCT...TAGCTTTTGAAT/TTGAAATTGACT...TGAAG|AAT   0 5.073

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