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)

13 rows where transcript_id = 37957332

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: 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
209597324 GT-AG 0 1.8755116835487664e-05 968 rna-XM_022784412.1 37957332 2 10039832 10040799 Vigna radiata 157791 CAG|GTTTGTATTC...TGAATCTTATTC/TTCTATCTCATT...TATAG|GAC 1 1 3.552
209597325 GT-AG 0 1.000000099473604e-05 2629 rna-XM_022784412.1 37957332 3 10040845 10043473 Vigna radiata 157791 GAG|GTTCGTATTC...TTTTTTTTTATG/TTTTTTTTTATG...AATAG|TTG 1 1 4.482
209597326 GT-AG 0 1.5138049884836242e-05 263 rna-XM_022784412.1 37957332 4 10044975 10045237 Vigna radiata 157791 CTG|GTATGATGCC...AACTCATTCATA/ACCAAACTCATT...TTCAG|GTA 2 1 35.481
209597327 GT-AG 0 1.624403926560785e-05 195 rna-XM_022784412.1 37957332 5 10046742 10046936 Vigna radiata 157791 GAG|GTATAAGCTA...AATTTTTTATAC/TTTATACTGACT...TCTAG|GTG 0 1 66.543
209597328 GT-AG 0 0.000212596911783 368 rna-XM_022784412.1 37957332 6 10047102 10047469 Vigna radiata 157791 AAG|GTATTGTGTA...CTATTATTATTT/CGATAATTAACT...GACAG|TTG 0 1 69.95
209597329 GT-AG 0 0.0008061599237496 97 rna-XM_022784412.1 37957332 7 10047669 10047765 Vigna radiata 157791 CGG|GTAATCTTAA...TATTGCTTAAAT/GTGTATTTTATT...TTCAG|GTG 1 1 74.06
209597330 GT-AG 0 1.000000099473604e-05 92 rna-XM_022784412.1 37957332 8 10047878 10047969 Vigna radiata 157791 TAG|GTAAATAATT...TGATTTTTTGTA/ACTTGGTTGATT...TGCAG|GGC 2 1 76.373
209597331 GT-AG 0 0.0425441550756328 92 rna-XM_022784412.1 37957332 9 10048118 10048209 Vigna radiata 157791 CAG|GTATCTCTAG...AATATATTATTG/TAATTGTTCAAC...TTCAG|GGT 0 1 79.43
209597332 GT-AG 0 1.000000099473604e-05 95 rna-XM_022784412.1 37957332 10 10048408 10048502 Vigna radiata 157791 CAG|GTAAAATTAC...TATGATTTACTT/GTATGATTTACT...AAAAG|GTG 0 1 83.519
209597333 GT-AG 0 0.0002677675086668 87 rna-XM_022784412.1 37957332 11 10048782 10048868 Vigna radiata 157791 GAG|GTATGTAAAA...GCATTCTTAAAT/AAATTTTTCACT...TGCAG|TAT 0 1 89.281
209597334 GT-AG 0 1.000000099473604e-05 81 rna-XM_022784412.1 37957332 12 10049031 10049111 Vigna radiata 157791 AAG|GTGGAGCTAA...CCTATCTTAATC/CCTATCTTAATC...TGTAG|GTA 0 1 92.627
209597335 GT-AG 0 2.76669696315792e-05 264 rna-XM_022784412.1 37957332 13 10049331 10049594 Vigna radiata 157791 CAA|GTAAGTTGAT...ATTTCCTGATTT/ATATAGCTAAGC...TGCAG|GGA 0 1 97.15
209604539 GT-AG 0 2.2802050251444976e-05 1968 rna-XM_022784412.1 37957332 1 10037824 10039791 Vigna radiata 157791 CAG|GTTCTTATTC...TTTCTCTTAGTT/TTGAATCTCATC...CTTAG|GAC   0 3.284

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