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

✎ 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
188654393 GT-AG 0 4.567870544010212 158 Sphmag20G005600.1.v1.1 33668908 1 1325328 1325485 Sphagnum magellanicum 128215 ACT|GTACCTTCTG...TTTTCTTCGATC/TTCGATCTCAGT...GGCAG|GTC 2 1 11.111
188654394 GT-AG 0 6.112870971325457e-05 393 Sphmag20G005600.1.v1.1 33668908 2 1325575 1325967 Sphagnum magellanicum 128215 GCG|GTATGACTTC...TGCTTTGTGAAG/AGATTGTTCAGT...GCAAG|GTT 1 1 19.636
188654395 GT-AG 0 1.000000099473604e-05 380 Sphmag20G005600.1.v1.1 33668908 3 1326111 1326490 Sphagnum magellanicum 128215 GTG|GTAAGAGGAT...TTGGCTTTGGCA/TTAGGTCTGAAA...CACAG|GAA 0 1 33.333
188654396 GT-AG 0 0.0003454157473215 122 Sphmag20G005600.1.v1.1 33668908 4 1326539 1326660 Sphagnum magellanicum 128215 GAG|GTACCACATG...TGATGTTTGATT/TGATGTTTGATT...TGCAG|GTT 0 1 37.931
188654397 GT-AG 0 1.000000099473604e-05 165 Sphmag20G005600.1.v1.1 33668908 5 1326743 1326907 Sphagnum magellanicum 128215 TAG|GTGCATCTTT...TGCATCTCAATG/CTGCATCTCAAT...TGTAG|TTG 1 1 45.785
188654398 GT-AG 0 1.000000099473604e-05 219 Sphmag20G005600.1.v1.1 33668908 6 1327011 1327229 Sphagnum magellanicum 128215 AAA|GTAAGTGTGT...CTCACCATGATT/GTACATCTCACC...CACAG|GCA 2 1 55.651
188654399 GT-AG 0 1.000000099473604e-05 302 Sphmag20G005600.1.v1.1 33668908 7 1327351 1327652 Sphagnum magellanicum 128215 CAG|GTCAGTTACC...AAAAGTTTGACT/TTTGACTTCATT...GGCAG|ATT 0 1 67.241
188654400 GT-AG 0 0.0675192384546332 651 Sphmag20G005600.1.v1.1 33668908 8 1327701 1328351 Sphagnum magellanicum 128215 GAG|GTATGCATCC...CATTTTTTAATT/CATTTTTTAATT...AACAG|AGC 0 1 71.839
188654401 GT-AG 0 1.000000099473604e-05 221 Sphmag20G005600.1.v1.1 33668908 9 1328436 1328656 Sphagnum magellanicum 128215 CAG|GTCAGATTTT...GTATACTTACTG/TGTATACTTACT...TGCAG|AAT 0 1 79.885
188654402 GT-AG 0 0.000137466556447 454 Sphmag20G005600.1.v1.1 33668908 10 1328722 1329175 Sphagnum magellanicum 128215 AAG|GTAAGCTTTC...TATGTCTTGTAT/AAAATATTTATG...TGCAG|AAT 2 1 86.111
188654403 GT-AG 0 0.0042993077702352 112 Sphmag20G005600.1.v1.1 33668908 11 1329228 1329339 Sphagnum magellanicum 128215 CAG|GTATATTTAC...TTTTGTTTGATC/TTTTGTTTGATC...TGCAG|GAA 0 1 91.092
188654404 GT-AG 0 1.000000099473604e-05 210 Sphmag20G005600.1.v1.1 33668908 12 1329379 1329588 Sphagnum magellanicum 128215 AAT|GTGAGTGCTA...GGTGCCTGGATT/CAGCCTCTGATT...TGCAG|GGT 0 1 94.828

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