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

✎ 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
210096378 GT-AG 0 1.000000099473604e-05 88 rna-XM_034834626.1 38062811 1 8900144 8900231 Vitis riparia 96939 AGG|GTAAAATGAG...GGAATATTGATT/GGAATATTGATT...TGCAG|AAT 1 1 13.699
210096379 GT-AG 0 0.0022296210757784 1295 rna-XM_034834626.1 38062811 2 8900294 8901588 Vitis riparia 96939 GAG|GTATAATTTG...TTTCTGTTAGTT/AGTTTGTTGAAT...TGCAG|GTA 0 1 15.839
210096380 GT-AG 0 0.0003538682897402 161 rna-XM_034834626.1 38062811 3 8902543 8902703 Vitis riparia 96939 AAG|GTAACATTCT...GGGTTGTTAATA/GGTTTATTTACT...TGCAG|AAT 0 1 48.758
210096381 GT-AG 0 1.000000099473604e-05 100 rna-XM_034834626.1 38062811 4 8902771 8902870 Vitis riparia 96939 CAG|GTACTGAACT...TGTTCCTTTCTA/AGGTTATTGATC...TGCAG|GTG 1 1 51.07
210096382 GT-AG 0 1.000000099473604e-05 1150 rna-XM_034834626.1 38062811 5 8902934 8904083 Vitis riparia 96939 AAT|GTACGGGAAA...GTTTGCTTGATG/ATGTGTCTAATG...TGCAG|GTC 1 1 53.244
210096383 GT-AG 0 1.000000099473604e-05 87 rna-XM_034834626.1 38062811 6 8904148 8904234 Vitis riparia 96939 TGG|GTGAGGATAG...TATGTTTTAGTT/TAATGTTTAATC...TTCAG|GGG 2 1 55.452
210096384 GT-AG 0 1.000000099473604e-05 99 rna-XM_034834626.1 38062811 7 8904329 8904427 Vitis riparia 96939 GAG|GTAATAATTG...TGTTTCTTATTT/TTGTTTCTTATT...CTTAG|GTG 0 1 58.696
210096385 GT-AG 0 0.0010505743827527 103 rna-XM_034834626.1 38062811 8 8904512 8904614 Vitis riparia 96939 AAG|GTAACCACAC...TGGGCCTTATAG/ATCATATTTATT...TGCAG|GGG 0 1 61.594
210096386 GT-AG 0 1.000000099473604e-05 101 rna-XM_034834626.1 38062811 9 8904705 8904805 Vitis riparia 96939 ATG|GTTAGTGACA...TATTTTTTTACG/TATTTTTTTACG...TGCAG|GAT 0 1 64.7
210096387 GT-AG 0 0.0011405644964156 829 rna-XM_034834626.1 38062811 10 8904834 8905662 Vitis riparia 96939 TAA|GTAAGCTTCC...TTTCATTTGACT/TTTCATTTGACT...TATAG|GCA 1 1 65.666
210096388 GT-AG 0 0.0100435763899703 84 rna-XM_034834626.1 38062811 11 8906200 8906283 Vitis riparia 96939 AAG|GTATACTGCC...TCACATTTAATT/ATTTAATTTATT...CCCAG|GAG 1 1 84.196
210096389 GT-AG 0 1.000000099473604e-05 1722 rna-XM_034834626.1 38062811 12 8906346 8908067 Vitis riparia 96939 GAG|GTAAGAACTT...TGGAGCTTAATG/TTAATGCTCAGC...TGCAG|GTT 0 1 86.335
210096390 GT-AG 0 1.000000099473604e-05 89 rna-XM_034834626.1 38062811 13 8908178 8908266 Vitis riparia 96939 ACA|GTAAGAATTC...TCATCCTCAAAT/ATTATTTTCATC...GTCAG|GAA 2 1 90.131
210096391 GT-AG 0 0.001148837826867 76 rna-XM_034834626.1 38062811 14 8908355 8908430 Vitis riparia 96939 GTG|GTATTTTCAC...ATGTACTGAACT/CATGTACTGAAC...CATAG|GAC 0 1 93.168

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