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

✎ 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
122792006 GT-AG 0 1.000000099473604e-05 75 rna-XM_018830465.1 22631599 2 9407884 9407958 Musa acuminata 4641 ACG|GTGAGAATGC...AATGCCTTGAAT/GACTTTTTGATG...TGTAG|GTG 2 1 6.199
122792007 GT-AG 0 1.000000099473604e-05 152 rna-XM_018830465.1 22631599 3 9407549 9407700 Musa acuminata 4641 AAG|GTAGAGTCGA...TTTTCCTAAGAA/TTTTTGTTCAAT...TGCAG|GTT 2 1 10.25
122792008 GT-AG 0 0.0001475984352103 86 rna-XM_018830465.1 22631599 4 9407363 9407448 Musa acuminata 4641 CAG|GTAACGTGTT...TTCCCCTTGGCA/CATTGTCTGAAT...TCTAG|GGT 0 1 12.464
122792009 GT-AG 0 0.3354033541530288 1241 rna-XM_018830465.1 22631599 5 9406091 9407331 Musa acuminata 4641 TTG|GTATGTTTTT...CTCTTCTTAACA/CTCTTCTTAACA...CTCAG|GTG 1 1 13.15
122792010 GT-AG 0 1.3384950751872026e-05 527 rna-XM_018830465.1 22631599 6 9405521 9406047 Musa acuminata 4641 AAA|GTGAGCTCCT...ATTTTTTTAATC/ATTTTTTTAATC...CACAG|GAT 2 1 14.102
122792011 GT-AG 0 0.000114062726015 2345 rna-XM_018830465.1 22631599 7 9403023 9405367 Musa acuminata 4641 TAA|GTAAGTTTTG...TAATTTATATTA/TGATAATTTATA...AACAG|CGA 2 1 17.489
122792012 GT-AG 0 0.0007401185367833 556 rna-XM_018830465.1 22631599 8 9400264 9400819 Musa acuminata 4641 CAG|GTAGATTTTC...TGGTTTTTGACT/TGGTTTTTGACT...AGCAG|GCA 0 1 66.261
122792013 GT-AG 0 0.4410180607829975 1572 rna-XM_018830465.1 22631599 9 9397311 9398882 Musa acuminata 4641 AAG|GTAGCTTTCT...TTTCTCTTAGTT/CTTTCTCTTAGT...TGCAG|CCC 1 1 96.834
122792014 GT-AG 0 1.000000099473604e-05 184 rna-XM_018830465.1 22631599 10 9397043 9397226 Musa acuminata 4641 AAG|GTAACAACAG...ACTTGTTTGATC/ACTTGTTTGATC...TGCAG|CAC 1 1 98.694
122802412 GT-AG 0 1.000000099473604e-05 220 rna-XM_018830465.1 22631599 1 9408103 9408322 Musa acuminata 4641 GAG|GTGCGTTCTT...ATTTCCTTGGAA/CTTGGAATTAGA...TGCAG|GGT   0 4.893

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