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

✎ 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
186782782 GT-AG 0 1.000000099473604e-05 2443 rna-XM_015206461.2 33342801 1 106297721 106300163 Solanum pennellii 28526 AAG|GTGCGGGCTT...TGATTTTTACTG/TTTTTACTGATT...TTCAG|TTT 0 1 3.135
186782783 GT-AG 0 1.1469763388999892e-05 836 rna-XM_015206461.2 33342801 2 106301228 106302063 Solanum pennellii 28526 AAG|GTTTGTACCT...TCTTTTTTAAAA/TATGTTCTTATG...TGCAG|CGT 2 1 19.984
186782784 GT-AG 0 0.4207938902897601 501 rna-XM_015206461.2 33342801 3 106302213 106302713 Solanum pennellii 28526 CTG|GTATGCTTTT...TTTCTTTTGAAT/TTTTACCTCATC...TACAG|ATC 1 1 22.344
186782785 GT-AG 0 0.0008264857125908 99 rna-XM_015206461.2 33342801 4 106302890 106302988 Solanum pennellii 28526 CAG|GTAACGTTTT...TTAATTTTAAAA/CTTCTATTAATT...AATAG|GTA 0 1 25.131
186782786 GT-AG 0 0.0029923347828155 92 rna-XM_015206461.2 33342801 5 106306205 106306296 Solanum pennellii 28526 CTG|GTATATTAAG...TTCTGTTTGATT/TTCTGTTTGATT...TCAAG|GTG 0 1 76.057
186782787 GT-AG 0 6.42612449421369e-05 2323 rna-XM_015206461.2 33342801 6 106306410 106308732 Solanum pennellii 28526 CCG|GTACGTTCAC...GATGCTTTCATT/GATGCTTTCATT...TTCAG|GTT 2 1 77.846
186782788 GT-AG 0 1.000000099473604e-05 801 rna-XM_015206461.2 33342801 7 106308938 106309738 Solanum pennellii 28526 CAG|GTGAGAAATA...CTGATTTTACTG/TTGAAGCTGATT...TGCAG|AAA 0 1 81.093
186782789 GT-AG 0 0.0007538288875024 1253 rna-XM_015206461.2 33342801 8 106309853 106311105 Solanum pennellii 28526 AAG|GTATTTACTT...ATATTTTTATAT/AATATTTTTATA...TGCAG|GGG 0 1 82.898
186782790 GT-AG 0 1.000000099473604e-05 91 rna-XM_015206461.2 33342801 9 106311214 106311304 Solanum pennellii 28526 CAG|GTTTGTATAA...GGGTTCTGATCT/TGGGTTCTGATC...CTCAG|ATT 0 1 84.608
186782791 GT-AG 0 1.000000099473604e-05 2016 rna-XM_015206461.2 33342801 10 106311438 106313453 Solanum pennellii 28526 GAG|GTAATAATAA...AAGGCTTCAATC/TTGCGGCTTATA...TGCAG|GTA 1 1 86.714
186782792 GT-AG 0 1.000000099473604e-05 509 rna-XM_015206461.2 33342801 11 106313657 106314165 Solanum pennellii 28526 CAG|GTGATAATCC...TGATCCCTGATA/GAGATACTGATC...GCCAG|GCT 0 1 89.929
186782793 GT-AG 0 0.0026302679376401 560 rna-XM_015206461.2 33342801 12 106314363 106314922 Solanum pennellii 28526 CAG|GTCTGCTCTC...GGAGTTTTAACT/TTTTAACTTATA...TGCAG|CCT 2 1 93.048
186797388 GT-AG 0 0.0052000608518964 178 rna-XM_015206461.2 33342801 13 106314999 106315176 Solanum pennellii 28526 TAG|GTATGCAGTT...TTATTCTTGCTT/ACACAGTTTATT...CGAAG|TTT   0 94.252
186797389 GT-AG 0 1.000000099473604e-05 287 rna-XM_015206461.2 33342801 14 106315231 106315517 Solanum pennellii 28526 TAG|GTGAGCACTG...GTAGTTTTAACT/TTTTAACTTATT...GGCAG|GTG   0 95.107

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