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)

14 rows where transcript_id = 27539162

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: 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
153300779 GT-AG 0 0.017965303401841 220 TCONS_00000080.p1 27539162 1 152538 152757 Physarum polycephalum 5791 AAG|GTATTCTCTT...TTTTTATTTACT...ACTAG|TAC 0 1 3.442
153300780 GT-AG 0 0.038509152981554 201 TCONS_00000080.p1 27539162 2 152176 152376 Physarum polycephalum 5791 TTA|GTATGCTTCC...TGTAAATTTACT...TGTAG|CAT 2 1 13.703
153300781 GT-AG 0 0.0001361975029423 101 TCONS_00000080.p1 27539162 3 151950 152050 Physarum polycephalum 5791 ATG|GTATGAGTCA...TATATTTTAATC...TTTAG|GGC 1 1 21.67
153300782 GT-AG 0 0.0020896713407135 85 TCONS_00000080.p1 27539162 4 151782 151866 Physarum polycephalum 5791 AAG|GTATACTCAG...TCTTTCTTATCT...TGCAG|GGT 0 1 26.96
153300783 GT-AG 0 1.000000099473604e-05 362 TCONS_00000080.p1 27539162 5 151306 151667 Physarum polycephalum 5791 TCT|GTGCGTCCCC...TTTTTTTTTATT...TCCAG|GAC 0 1 34.226
153300784 GT-AG 0 2.496213080405195 631 TCONS_00000080.p1 27539162 6 150575 151205 Physarum polycephalum 5791 GGG|GTATCAACAT...CTCTCTTTTTTT...AAAAG|ATC 1 1 40.599
153300785 GT-AG 0 1.000000099473604e-05 91 TCONS_00000080.p1 27539162 7 150412 150502 Physarum polycephalum 5791 CAG|GTTTGTACAG...TCTTCCTCATCA...CAAAG|AAA 1 1 45.188
153300786 GT-AG 0 0.0127098591942187 176 TCONS_00000080.p1 27539162 8 150103 150278 Physarum polycephalum 5791 ATG|GTATTATCTA...CTTCCCTTCTTT...TTCAG|GTA 2 1 53.665
153300787 GT-AG 0 0.0074209069610928 117 TCONS_00000080.p1 27539162 9 149934 150050 Physarum polycephalum 5791 AAG|GTATTTTGAT...CTCCTATTCATA...GTTAG|GGA 0 1 56.979
153300788 GT-AG 0 0.0039128105670414 176 TCONS_00000080.p1 27539162 10 149680 149855 Physarum polycephalum 5791 ATT|GTATGTACAT...TAATGATTAATA...TGCAG|TTC 0 1 61.95
153300789 GT-AG 0 1.000000099473604e-05 120 TCONS_00000080.p1 27539162 11 149508 149627 Physarum polycephalum 5791 AAG|GTACAGATCC...TTTAATTTGAAA...CTTAG|GAG 1 1 65.264
153300790 GT-AG 0 0.0019244410750872 798 TCONS_00000080.p1 27539162 12 148548 149345 Physarum polycephalum 5791 GAG|GTATGGAGGG...AATTTTTTGACT...TGCAG|CCC 1 1 75.59
153300791 GT-AG 0 0.0141952401476603 699 TCONS_00000080.p1 27539162 13 147735 148433 Physarum polycephalum 5791 TTG|GTAACCCCCC...AGTCCTTTTATG...CTTAG|GCC 1 1 82.855
153300792 GT-AG 0 1.000000099473604e-05 359 TCONS_00000080.p1 27539162 14 147295 147653 Physarum polycephalum 5791 CGC|GTTCTACAAC...CTCTCTTTTAGG...CTTAG|GCC 1 1 88.018

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