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)

10 rows where transcript_id = 22631574

✎ 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
122791567 GT-AG 0 0.0098949387728815 110 rna-XM_009412803.2 22631574 1 15148495 15148604 Musa acuminata 4641 CCG|GTCCCTTCCC...ATTTCCTCATCC/GATTTCCTCATC...TCCAG|GTC 0 1 1.545
122791568 GT-AG 0 0.000830152158799 467 rna-XM_009412803.2 22631574 2 15147979 15148445 Musa acuminata 4641 GAG|GTATGATTTG...TGTTGTTTGACT/TGTTGTTTGACT...TGAAG|GTG 1 1 2.209
122791569 GT-AG 0 1.4866032294701958e-05 953 rna-XM_009412803.2 22631574 3 15146852 15147804 Musa acuminata 4641 CAT|GTAAGTTAAC...TACTCCTTTTTT/CCTTTTTTCACA...ATCAG|GCA 1 1 4.566
122791570 GT-AG 0 0.0001121239193665 108 rna-XM_009412803.2 22631574 4 15146539 15146646 Musa acuminata 4641 CTT|GTAAGTTGCA...AATATCTTACAT/CTTACATTCATA...GGCAG|GTG 2 1 7.344
122791571 GT-AG 0 0.0009091083044645 191 rna-XM_009412803.2 22631574 5 15146133 15146323 Musa acuminata 4641 CTG|GTATGGTTGC...AATCTCTTATTT/TAATCTCTTATT...TTTAG|GAG 1 1 10.257
122791572 GT-AG 0 1.000000099473604e-05 959 rna-XM_009412803.2 22631574 6 15144192 15145150 Musa acuminata 4641 AAG|GTAATTGACT...CTGGTTTTAATT/ATTGATTTCATT...TTTAG|GTT 2 1 23.564
122791573 GT-AG 0 1.000000099473604e-05 288 rna-XM_009412803.2 22631574 7 15142718 15143005 Musa acuminata 4641 CAG|GTTGGATCTT...TGCCTCTTGCTT/TTAATATTCATG...TGCAG|GTT 0 1 39.634
122791574 GT-AG 0 1.000000099473604e-05 821 rna-XM_009412803.2 22631574 8 15141537 15142357 Musa acuminata 4641 GAA|GTGAGTATCA...CACTTTTTACCC/CTTTTTGTAATC...TGCAG|ATC 0 1 44.512
122791575 GT-AG 0 0.0022302132782814 348 rna-XM_009412803.2 22631574 9 15139943 15140290 Musa acuminata 4641 CAG|GTATATTCCT...CTTCTTTTCACG/GTGATGCTCACT...TTCAG|ATG 1 1 61.396
122791576 GT-AG 0 0.0033116405584313 78 rna-XM_009412803.2 22631574 10 15139599 15139676 Musa acuminata 4641 GAG|GTATTTCGCT...TTTTTCTTATTA/TTTTTTCTTATT...TCCAG|GTA 0 1 65.0

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