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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, length, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
209850262 GT-AG 0 1.1670655882609171e-05 220 rna-XM_028066498.1 38015525 1 18696182 18696401 Vigna unguiculata 3917 GAG|GTATGAAATT...AGTTTGTTGATG/AGTTTGTTGATG...GACAG|CTT 0 1 6.864
209850263 GT-AG 0 1.000000099473604e-05 119 rna-XM_028066498.1 38015525 2 18696541 18696659 Vigna unguiculata 3917 TTG|GTGAGCTCAA...ATTTTCTTTTCA/TTTCTTTTCACT...AACAG|ATA 1 1 10.889
209850264 GT-AG 0 0.0009114398838498 105 rna-XM_028066498.1 38015525 3 18696797 18696901 Vigna unguiculata 3917 GAT|GTAAGTTGCT...TTTTCCTTGAAA/AACATTTTCACT...GCAAG|ATT 0 1 14.857
209850265 GT-AG 0 1.000000099473604e-05 94 rna-XM_028066498.1 38015525 4 18697104 18697197 Vigna unguiculata 3917 TTG|GTGAGGTTCT...GGGCTCTTATAC/AGGGCTCTTATA...CTTAG|ATA 1 1 20.707
209850266 GT-AG 0 1.000000099473604e-05 150 rna-XM_028066498.1 38015525 5 18697437 18697586 Vigna unguiculata 3917 GAA|GTAAGAGTGA...AAATTCTTAATA/TTTTTATTAATT...TGTAG|CTC 0 1 27.628
209850267 GT-AG 0 0.0530303865128372 155 rna-XM_028066498.1 38015525 6 18697699 18697853 Vigna unguiculata 3917 ATG|GTATGCAATA...TTTCTCTTAATA/ATTTCTCTTAAT...TGTAG|ATT 1 1 30.872
209850268 GC-AG 0 1.000000099473604e-05 169 rna-XM_028066498.1 38015525 7 18697999 18698167 Vigna unguiculata 3917 AAG|GCAGGTGTAG...AACATCTAAAAT/TAATGGTTCAAG...TGCAG|GTT 2 1 35.071
209850269 GT-AG 0 0.0014251843220143 183 rna-XM_028066498.1 38015525 8 18698311 18698493 Vigna unguiculata 3917 ATT|GTATGAATAT...TGTTTTTTACTC/GTGTTTTTTACT...CTTAG|ATT 1 1 39.212
209850270 GT-AG 0 1.000000099473604e-05 110 rna-XM_028066498.1 38015525 9 18698667 18698776 Vigna unguiculata 3917 CAA|GTAAGTAAAG...ATGGCTTAAACA/CATGGCTTAAAC...ATCAG|GGC 0 1 44.222
209850271 GT-AG 0 1.000000099473604e-05 73 rna-XM_028066498.1 38015525 10 18699164 18699236 Vigna unguiculata 3917 TTG|GTGAGTTTAA...TTGTTTGCAACT/TTGCAACTGATT...TGTAG|AGA 0 1 55.43
209850272 GT-AG 0 1.9640674824936736e-05 183 rna-XM_028066498.1 38015525 11 18699293 18699475 Vigna unguiculata 3917 AGG|GTAGTTATCC...GATCTCTTTTCT/TCTTTTCTTATA...AACAG|GTG 2 1 57.052
209850273 GT-AG 0 1.000000099473604e-05 121 rna-XM_028066498.1 38015525 12 18699679 18699799 Vigna unguiculata 3917 AAG|GTAAGAAACT...CATCCCTTGAGA/ATTTATTTCATC...TGCAG|GTG 1 1 62.931

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