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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, length, 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
146836060 GT-AG 0 1.7647074707096956e-05 1705 Pavag01G486900.1.v3.1 26505201 2 51905556 51907260 Paspalum vaginatum 158149 AAG|GTTTGTCATT...ATGTCCTTGTCA/AGTTTTCTAAGT...CACAG|TTT 2 1 30.395
146836061 GT-AG 0 0.0001430820791827 92 Pavag01G486900.1.v3.1 26505201 3 51905298 51905389 Paspalum vaginatum 158149 GAT|GTAGGCAGTC...TTTGTTTCATCT/ATTTGTTTCATC...TTCAG|ATT 0 1 33.83
146836062 GT-AG 0 1.000000099473604e-05 84 Pavag01G486900.1.v3.1 26505201 4 51905090 51905173 Paspalum vaginatum 158149 ATA|GTAATATCCA...TCATTTGTAATC/CTGTTGCTCATT...TCTAG|TAC 1 1 36.396
146836063 GT-AG 0 1.000000099473604e-05 84 Pavag01G486900.1.v3.1 26505201 5 51904893 51904976 Paspalum vaginatum 158149 GAG|GTAAAAATCT...CTACTTTTGATC/CTACTTTTGATC...TACAG|AAA 0 1 38.734
146836064 GT-AG 0 1.000000099473604e-05 95 Pavag01G486900.1.v3.1 26505201 6 51904638 51904732 Paspalum vaginatum 158149 AAG|GTCAGATTCT...AACCTTTTAAAA/GGCCTGTTTATT...TACAG|TGG 1 1 42.044
146836065 GT-AG 0 0.0810518530338871 836 Pavag01G486900.1.v3.1 26505201 7 51903449 51904284 Paspalum vaginatum 158149 GAT|GTATGCCATC...CTCGCCTTACTT/TTCTTTCTCATC...TAAAG|GAG 0 1 49.348
146836066 GC-AG 0 1.000000099473604e-05 137 Pavag01G486900.1.v3.1 26505201 8 51903096 51903232 Paspalum vaginatum 158149 CAG|GCATGGATAT...TTGCTATTGACA/TTAGATTTCACT...TGCAG|AAA 0 1 53.818
146836067 GT-AG 0 3.863935895433753e-05 69 Pavag01G486900.1.v3.1 26505201 9 51902937 51903005 Paspalum vaginatum 158149 CAG|GTACAATTTC...TGCGGTTTAATA/TGCGGTTTAATA...AACAG|GTC 0 1 55.68
146836068 GT-AG 0 0.0007715800964706 117 Pavag01G486900.1.v3.1 26505201 10 51902559 51902675 Paspalum vaginatum 158149 ATG|GTACGTTTGA...TTGGCTTTACTA/ATTATTTTCATG...TAAAG|GAG 0 1 61.08
146836069 GT-AG 0 3.236417396799172e-05 128 Pavag01G486900.1.v3.1 26505201 11 51902143 51902270 Paspalum vaginatum 158149 CAG|GTATAGAATA...TCTGTCTAGACA/CTAGACATCAAT...TGCAG|AAG 0 1 67.039
146836070 GT-AG 0 0.0013571712418708 87 Pavag01G486900.1.v3.1 26505201 12 51901966 51902052 Paspalum vaginatum 158149 CAG|GTATTACTGC...CTTTCCTTAATA/TCTTTCCTTAAT...AACAG|GTC 0 1 68.901
146855262 GT-AG 0 0.0355626962155265 562 Pavag01G486900.1.v3.1 26505201 1 51908588 51909149 Paspalum vaginatum 158149 CAG|GTATGCTATG...TTTTTTTTAAAA/TTTTTTTTTAAA...TGCAG|GCC   0 6.331

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