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

✎ 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
183116802 GT-AG 0 0.0001050641099176 480 rna-XM_011083170.2 32739481 1 10943953 10944432 Sesamum indicum 4182 ATG|GTATGTGAAG...TTGGTTTTGATG/TTGGTTTTGATG...TGCAG|GTT 0 1 5.537
183116803 GT-AG 0 1.000000099473604e-05 110 rna-XM_011083170.2 32739481 2 10944676 10944785 Sesamum indicum 4182 GAG|GTTGTAGATG...ATATCTTTGATT/TATATACTAACC...AGCAG|CTT 0 1 12.332
183116804 GT-AG 0 1.000000099473604e-05 219 rna-XM_011083170.2 32739481 3 10945578 10945796 Sesamum indicum 4182 ATG|GTGAGTCTTG...GTGGCCTTAGTT/TTAGTTGTGACA...TGCAG|GTC 0 1 34.48
183116805 GT-AG 0 1.000000099473604e-05 660 rna-XM_011083170.2 32739481 4 10946045 10946704 Sesamum indicum 4182 GAG|GTGAGTATCA...GTCACCTTAGAG/GAGAATGTCACC...GTCAG|CCA 2 1 41.415
183116806 GT-AG 0 1.000000099473604e-05 93 rna-XM_011083170.2 32739481 5 10946865 10946957 Sesamum indicum 4182 AAG|GTAAGAGATG...CTGTTTTTGCTA/TTGCTACTGATA...TACAG|GTT 0 1 45.889
183116807 GT-AG 0 1.095638762077008e-05 99 rna-XM_011083170.2 32739481 6 10947085 10947183 Sesamum indicum 4182 CTG|GTACGATCTG...GTGTATTTGATC/GTGTATTTGATC...TACAG|ACG 1 1 49.441
183116808 GT-AG 0 1.417941453246483e-05 242 rna-XM_011083170.2 32739481 7 10947274 10947515 Sesamum indicum 4182 CCT|GTAAGTCCCA...ATCAATTTGACA/ATCAATTTGACA...GGCAG|CTG 1 1 51.957
183116809 GT-AG 0 0.0043968099216409 195 rna-XM_011083170.2 32739481 8 10947711 10947905 Sesamum indicum 4182 GTG|GTATGCACCC...CTTTTCTCATTT/GCTTTTCTCATT...CTCAG|GTA 1 1 57.411
183116810 GT-AG 0 0.0019202059229073 111 rna-XM_011083170.2 32739481 9 10947976 10948086 Sesamum indicum 4182 ATT|GTAAGCTACT...CTGATTTTGATT/CTGATTTTGATT...TTCAG|GCA 2 1 59.368
183116811 GT-AG 0 1.000000099473604e-05 223 rna-XM_011083170.2 32739481 10 10948130 10948352 Sesamum indicum 4182 CTG|GTGAGTTCAA...ACTCTCTTGGTT/TTGTATCTAATG...AACAG|GTG 0 1 60.57
183116812 GT-AG 0 1.000000099473604e-05 224 rna-XM_011083170.2 32739481 11 10948494 10948717 Sesamum indicum 4182 ACT|GTGAGTCTCA...TAATTTTTGAAG/AAACTATTAATT...TGCAG|GTG 0 1 64.513
183116813 GT-AG 0 2.1203052268777e-05 220 rna-XM_011083170.2 32739481 12 10949774 10949993 Sesamum indicum 4182 CAA|GTAAGTTCAA...TCTTCTTGGATG/AAGTTAATGACC...TGCAG|ATG 0 1 94.044

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