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)

11 rows where transcript_id = 34724162

✎ 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
195653849 GT-AG 0 0.0004245883442875 716 rna-XM_010554134.1 34724162 2 10627749 10628464 Tarenaya hassleriana 28532 AGT|GTAAGCGTTC...ATATCCTGAAAA/AAGTATCTGAAA...TGCAG|AAT 2 1 5.659
195653850 GT-AG 0 1.000000099473604e-05 169 rna-XM_010554134.1 34724162 3 10628577 10628745 Tarenaya hassleriana 28532 CAG|GTGTGCAGAT...AATTCTTTTTCC/AAATTTCTAACG...TACAG|ATG 0 1 8.86
195653851 GT-AG 0 1.000000099473604e-05 211 rna-XM_010554134.1 34724162 4 10628867 10629077 Tarenaya hassleriana 28532 AAG|GTAATAATAA...GATGTCTGATTT/GGATGTCTGATT...TGCAG|TCC 1 1 12.318
195653852 GT-AG 0 0.0014108547544165 260 rna-XM_010554134.1 34724162 6 10630495 10630754 Tarenaya hassleriana 28532 CGG|GTACGTTTCT...TTTTACTTAAAA/ATGGAATTCATT...TGAAG|ATT 1 1 42.412
195653853 GT-AG 0 9.889714884326332e-05 169 rna-XM_010554134.1 34724162 7 10630817 10630985 Tarenaya hassleriana 28532 AAG|GTAATCTCTT...GATTCTTTCGTT/GAATTTTTCATT...TGTAG|ATA 0 1 44.184
195653854 GT-AG 0 1.000000099473604e-05 152 rna-XM_010554134.1 34724162 8 10631061 10631212 Tarenaya hassleriana 28532 CAG|GTAAAGTTAT...TGATTCTTCTTC/GTCTGCATGATT...TTCAG|ATT 0 1 46.328
195653855 GT-AG 0 1.000000099473604e-05 96 rna-XM_010554134.1 34724162 9 10632281 10632376 Tarenaya hassleriana 28532 GCG|GTTAGTGAAA...ATTTTCTTGGTA/GGTATGCTGATT...TCCAG|TTT 0 1 76.851
195653856 GT-AG 0 0.0060497480078112 102 rna-XM_010554134.1 34724162 10 10632692 10632793 Tarenaya hassleriana 28532 GAG|GTATTTTTGG...CCATTTTCAATC/TCCATTTTCAAT...TGCAG|CCT 0 1 85.853
195653857 GT-AG 0 3.799385952758858e-05 76 rna-XM_010554134.1 34724162 11 10632992 10633067 Tarenaya hassleriana 28532 AGC|GTGCGTCTTT...GTTTTCTTCATT/GTTTTCTTCATT...GACAG|TTG 0 1 91.512
195653858 GT-AG 0 9.154174491647232e-05 185 rna-XM_010554134.1 34724162 12 10633157 10633341 Tarenaya hassleriana 28532 CAG|GTACTAATCC...TAATCTTTAACA/TAATCTTTAACA...TACAG|TAA 2 1 94.055
195662851 GT-AG 0 1.000000099473604e-05 910 rna-XM_010554134.1 34724162 1 10626769 10627678 Tarenaya hassleriana 28532 CTG|GTGGGTTCGT...TCATTCTTAACT/CGTGTTTTAATC...TGTAG|ACA   0 3.801

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