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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, length, 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
85341986 GT-AG 0 1.000000099473604e-05 134 Gobar.A01G166100.1.v1.1 15858503 3 90145291 90145424 Gossypium barbadense 3634 CAG|GTGCTGAACA...AGGTTTTTAACC/AGGTTTTTAACC...ATTAG|GTT 1 1 8.998
85341987 GT-AG 0 1.000000099473604e-05 156 Gobar.A01G166100.1.v1.1 15858503 4 90145096 90145251 Gossypium barbadense 3634 CAG|GTTTAAATTT...ATTCTTGTAATT/ATTCTTGTAATT...CACAG|GCA 1 1 10.134
85341988 GT-AG 0 1.000000099473604e-05 84 Gobar.A01G166100.1.v1.1 15858503 5 90144949 90145032 Gossypium barbadense 3634 CAG|GTGTTAGTTC...CTCACTTTAGTT/ATTTTGCTCACT...TACAG|CTT 1 1 11.969
85341989 GT-AG 0 1.000000099473604e-05 99 Gobar.A01G166100.1.v1.1 15858503 6 90144790 90144888 Gossypium barbadense 3634 TAG|GTTCAACTAT...AATTTTTTAACA/AATTTTTTAACA...ATTAG|GTT 1 1 13.716
85341990 GT-AG 0 1.000000099473604e-05 115 Gobar.A01G166100.1.v1.1 15858503 7 90144636 90144750 Gossypium barbadense 3634 CAG|GTTTGGATTC...TGTGTCGTGACA/TGTGTCGTGACA...ATCAG|TTT 1 1 14.851
85341991 GT-AG 0 1.000000099473604e-05 135 Gobar.A01G166100.1.v1.1 15858503 8 90144390 90144524 Gossypium barbadense 3634 CAG|GTGCTGGACC...AGGTTTTTAACC/AGGTTTTTAACC...ATTAG|GTT 1 1 18.084
85341992 GT-AG 0 1.000000099473604e-05 252 Gobar.A01G166100.1.v1.1 15858503 9 90144099 90144350 Gossypium barbadense 3634 CAG|GTTCAAATTT...TTGGTCATACAA/ATGTCGCTCACT...TACAG|CTT 1 1 19.22
85341993 GT-AG 0 1.000000099473604e-05 99 Gobar.A01G166100.1.v1.1 15858503 10 90143952 90144050 Gossypium barbadense 3634 CAG|GTTCTTCCAC...ATACTCTAAGCC/CTTCTGGTCATA...TTTAG|GCT 1 1 20.617
85341994 GT-AG 0 1.000000099473604e-05 132 Gobar.A01G166100.1.v1.1 15858503 11 90143670 90143801 Gossypium barbadense 3634 CAG|GTACTAGTTC...TACACTTCAACA/TTGGTTCTAAAA...TTCAG|GCT 1 1 24.985
85341995 GT-AG 0 0.0006988330887643 102 Gobar.A01G166100.1.v1.1 15858503 12 90141511 90141612 Gossypium barbadense 3634 ACG|GTACATACTT...AATGCTTTAAAT/AATGCTTTAAAT...TGCAG|ACG 0 1 84.886
85351036 GT-AG 0 1.000000099473604e-05 101 Gobar.A01G166100.1.v1.1 15858503 1 90145690 90145790 Gossypium barbadense 3634 CAG|GTTCAACTAT...ATGTTTTTAACA/ATGTTTTTAACA...ATTAG|GTT   0 5.999
85351037 GT-AG 0 2.292886751062435e-05 115 Gobar.A01G166100.1.v1.1 15858503 2 90145536 90145650 Gossypium barbadense 3634 CGG|GTTTGGATTC...TGGGTCTTGATA/TGGGTCTTGATA...ATCAG|TTT   0 7.135

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