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

✎ 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
209597311 GT-AG 0 1.000000099473604e-05 553 rna-XM_022779531.1 37957330 1 14795247 14795799 Vigna radiata 157791 CAG|GTCTTAACAA...CTTACCTTATTT/TATTTTCTCAGT...AATAG|GTG 1 1 2.367
209597312 GT-AG 0 0.0001990986756058 264 rna-XM_022779531.1 37957330 2 14793485 14793748 Vigna radiata 157791 CTG|GTATGGTGCC...TTGTTCTAAATA/TGACAATTCATA...TTCAG|GTA 2 1 31.671
209597313 GT-AG 0 5.546657442337343e-05 157 rna-XM_022779531.1 37957330 3 14791824 14791980 Vigna radiata 157791 GAG|GTATAGCTGC...AATTTCATATTT/TTGAATTTCATA...TTTAG|GTG 0 1 61.092
209597314 GT-AG 0 0.0003023976428511 467 rna-XM_022779531.1 37957330 4 14791192 14791658 Vigna radiata 157791 AAG|GTATTGTGTA...TTTTTTTCAATT/TTTTTTTTCAAT...GACAG|TTG 0 1 64.319
209597315 GT-AG 0 1.000000099473604e-05 95 rna-XM_022779531.1 37957330 5 14790898 14790992 Vigna radiata 157791 CAG|GTAATTAAAA...CATATTATAACG/TTATTGCTAAAA...TTCAG|GTG 1 1 68.212
209597316 GT-AG 0 1.000000099473604e-05 93 rna-XM_022779531.1 37957330 6 14790693 14790785 Vigna radiata 157791 TAG|GTAAATAATC...GATTTTTTGTTA/ACTTGGTTGATT...TGTAG|GGC 2 1 70.403
209597317 GT-AG 0 0.0148282266135526 87 rna-XM_022779531.1 37957330 7 14790458 14790544 Vigna radiata 157791 CAG|GTCTCCCTAG...AATATATTATTG/TAATTGTTCAGT...TTCAG|GGT 0 1 73.298
209597318 GT-AG 0 1.000000099473604e-05 92 rna-XM_022779531.1 37957330 8 14790168 14790259 Vigna radiata 157791 CAG|GTAAAATTAT...GAATGTTTGATT/GTTTGATTTATT...AAAAG|GTG 0 1 77.171
209597319 GT-AG 0 0.0001755455844856 84 rna-XM_022779531.1 37957330 9 14789805 14789888 Vigna radiata 157791 GAG|GTATGTAAAA...CCACTCTTAAAT/TAAATTTTCATT...TGCAG|TAT 0 1 82.629
209597320 GT-AG 0 1.000000099473604e-05 76 rna-XM_022779531.1 37957330 10 14789567 14789642 Vigna radiata 157791 AAG|GTTGAGCTAA...TTTACCATAACA/AACTTTCTAATT...TGAAG|GTA 0 1 85.798
209597321 GT-AG 0 1.814100541367516e-05 255 rna-XM_022779531.1 37957330 11 14789093 14789347 Vigna radiata 157791 CAA|GTAAGTTCAC...TAATCTTTATAG/AATATTTTCATC...TGCAG|GGC 0 1 90.082
209604536 GT-AG 0 1.000000099473604e-05 991 rna-XM_022779531.1 37957330 12 14787815 14788805 Vigna radiata 157791 CAG|GTAAGGCGAG...TTATTCTGATTT/TTTATTCTGATT...TATAG|GAA   0 95.696

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