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

✎ 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
1929801 GT-AG 0 1.000000099473604e-05 3309 Acora.01G166800.1.v1.1 310659 2 31028445 31031753 Acorus americanus 263995 AAG|GTGAATTTCT...ATTTTCTGAGTA/TATTTTCTGAGT...TGTAG|GCG 2 1 6.736
1929802 GT-AG 0 0.0006365376330464 176 Acora.01G166800.1.v1.1 310659 3 31028209 31028384 Acorus americanus 263995 TCG|GTAAGTTTTT...TTACCTTTACCT/TTATTACTTACC...TTTAG|ACT 2 1 7.592
1929803 GT-AG 0 0.0031251872338845 2051 Acora.01G166800.1.v1.1 310659 4 31026052 31028102 Acorus americanus 263995 GAG|GTATTATTCT...ATCCTCTTAAAT/ATTATTCTGATT...GTTAG|GAA 0 1 9.105
1929804 GT-AG 0 1.910169568796867e-05 2261 Acora.01G166800.1.v1.1 310659 5 31023722 31025982 Acorus americanus 263995 GAG|GTAATATTGC...TATTTCTTACCT/TTATTTCTTACC...CCCAG|GCA 0 1 10.09
1929805 GT-AG 0 0.000268782710363 472 Acora.01G166800.1.v1.1 310659 6 31023196 31023667 Acorus americanus 263995 AAG|GTAACATTTT...TCTTTCTGAGAT/TTCTTTCTGAGA...TACAG|GCC 0 1 10.861
1929806 GT-AG 0 0.0001817138046407 905 Acora.01G166800.1.v1.1 310659 7 31022186 31023090 Acorus americanus 263995 GAG|GTTTACACTG...AGGTACTTAAAT/GAATATCTCACA...GGCAG|GGT 0 1 12.359
1929807 GT-AG 0 1.000000099473604e-05 97 Acora.01G166800.1.v1.1 310659 8 31021939 31022035 Acorus americanus 263995 CAG|GTGGGATGGT...TAGTTCTTATGT/ATAGTTCTTATG...TACAG|ATC 0 1 14.5
1929808 GT-AG 0 3.325370929754686e-05 131 Acora.01G166800.1.v1.1 310659 9 31021460 31021590 Acorus americanus 263995 CAG|GTATATGGTT...TGGTTTCTGACA/TGGTTTCTGACA...TTCAG|GAG 0 1 19.466
1929809 GT-AG 0 0.0329330736270296 1280 Acora.01G166800.1.v1.1 310659 10 31017841 31019120 Acorus americanus 263995 GAG|GTATTCCTAT...TATATCTTACTG/TTATATCTTACT...TTTAG|GTA 2 1 52.847
1929810 GT-AG 0 4.423301452125012e-05 864 Acora.01G166800.1.v1.1 310659 11 31014442 31015305 Acorus americanus 263995 TAG|GTAACTCAAA...CGTGCTTTGTTT/ACAATATTTATT...TGCAG|GGA 2 1 89.025
1929811 GT-AG 0 1.000000099473604e-05 122 Acora.01G166800.1.v1.1 310659 12 31013986 31014107 Acorus americanus 263995 CAG|GTAAATTATA...GAACCTTCAACC/GTTTTCCTTATG...TGCAG|TCT 0 1 93.792
1939144 GT-AG 0 4.688244596700216e-05 507 Acora.01G166800.1.v1.1 310659 1 31032264 31032770 Acorus americanus 263995 CAG|GTTCTCTCTT...TTGCTTGTGACG/TAAAGGTTAATG...TGCAG|GAA   0 3.497

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