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)

11 rows where transcript_id = 310722

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, length, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
1930563 GC-AG 0 1.059759620235446e-05 1229 Acora.01G075000.1.v1.1 310722 1 11671042 11672270 Acorus americanus 263995 CAG|GCAATCTCTC...TTGTTCTTGAAT/TAATTTTTTATT...TGTAG|AGT 0 1 12.054
1930564 GT-AG 0 1.000000099473604e-05 3777 Acora.01G075000.1.v1.1 310722 2 11672320 11676096 Acorus americanus 263995 CAG|GTTAGTTCTA...CATTTCTTGTTC/TACCTGTTCATT...GGCAG|ATA 1 1 13.629
1930565 GT-AG 0 1.000000099473604e-05 2741 Acora.01G075000.1.v1.1 310722 3 11676553 11679293 Acorus americanus 263995 CAG|GTAATGCCTC...TTTGACTTGAAG/ACTTTTTTCAGT...AACAG|CAG 1 1 28.287
1930566 GT-AG 0 1.000000099473604e-05 81 Acora.01G075000.1.v1.1 310722 4 11679671 11679751 Acorus americanus 263995 CAG|GTTCACGCAT...TTTTTCTTCTCT/TCTTCTCTGAAT...TGCAG|TTT 0 1 40.405
1930567 GT-AG 0 4.130647033114374e-05 81 Acora.01G075000.1.v1.1 310722 5 11679944 11680024 Acorus americanus 263995 AAG|GTGTTTTTCC...GCTTTTTTATGT/AGCTTTTTTATG...CATAG|GCT 0 1 46.577
1930568 GT-AG 0 0.001979951242093 124 Acora.01G075000.1.v1.1 310722 6 11680211 11680334 Acorus americanus 263995 GAG|GTATGTTTAT...TTGCCCATAATC/TGGCATTTTATT...TGTAG|GAT 0 1 52.555
1930569 GT-AG 0 0.001166174953726 77 Acora.01G075000.1.v1.1 310722 7 11680407 11680483 Acorus americanus 263995 AAG|GTTGCTTTAA...TATGTTTTGATT/TATGTTTTGATT...AACAG|GTG 0 1 54.87
1930570 GT-AG 0 1.000000099473604e-05 97 Acora.01G075000.1.v1.1 310722 8 11680542 11680638 Acorus americanus 263995 CAG|GTAGCGAAAA...ATACCCTTGTAT/CACTTACTCACT...TGCAG|ATG 1 1 56.734
1930571 GT-AG 0 1.000000099473604e-05 80 Acora.01G075000.1.v1.1 310722 9 11681810 11681889 Acorus americanus 263995 GAG|GTGCATCATC...GGTGTTTTACTG/GTTTTACTGATG...GGCAG|GAA 2 1 94.375
1930572 GT-AG 0 1.000000099473604e-05 2080 Acora.01G075000.1.v1.1 310722 10 11681947 11684026 Acorus americanus 263995 GAG|GTAAATGCAG...TCTGCCTTTACT/ATGTTTTTCATT...TTTAG|ACA 2 1 96.207
1930573 GT-AG 0 1.000000099473604e-05 190 Acora.01G075000.1.v1.1 310722 11 11684099 11684288 Acorus americanus 263995 CAG|GTGAGATACG...TTTTACTTGACA/TCATATTTTACT...TGTAG|ACG 2 1 98.521

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