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

✎ 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
183116194 GT-AG 0 0.0003026856168062 1119 rna-XM_011094069.2 32739443 2 17730466 17731584 Sesamum indicum 4182 AAG|GTATTAATTA...ATTTTCTTAGGC/GGCTATTTCACT...CTCAG|ACG 2 1 7.381
183116195 GT-AG 0 2.272470691780069e-05 242 rna-XM_011094069.2 32739443 3 17730164 17730405 Sesamum indicum 4182 CCG|GTAATTGCCA...ATTACCTTATCT/TTTAGCTTTATT...TACAG|ACT 2 1 8.231
183116196 GT-AG 0 0.000872062126864 99 rna-XM_011094069.2 32739443 4 17729959 17730057 Sesamum indicum 4182 GAG|GTAGTCTGCA...ATTCTCTTATAG/GTTGTTCTAACA...ATCAG|GAA 0 1 9.732
183116197 GT-AG 0 1.000000099473604e-05 147 rna-XM_011094069.2 32739443 5 17729743 17729889 Sesamum indicum 4182 GAG|GTGTGCGATC...AAGTTTCTAATT/AAGTTTCTAATT...TTCAG|GCA 0 1 10.71
183116198 GT-AG 0 1.000000099473604e-05 169 rna-XM_011094069.2 32739443 6 17729520 17729688 Sesamum indicum 4182 AAG|GTGTTGCATT...TAATTCTTCATA/TTGAGTTTAATT...TGCAG|GCG 0 1 11.475
183116199 GT-AG 0 5.078575184972544e-05 836 rna-XM_011094069.2 32739443 7 17728576 17729411 Sesamum indicum 4182 GAG|GTTTGCCTTT...ATGTCCATGTCA/AGATTGCTAATA...TTCAG|GGT 0 1 13.005
183116200 GT-AG 0 7.413759088502733e-05 92 rna-XM_011094069.2 32739443 8 17728334 17728425 Sesamum indicum 4182 CAG|GTATGGCTTT...ATAGTTTTATCT/TATAGTTTTATC...TGCAG|GTT 0 1 15.13
183116201 GT-AG 0 1.000000099473604e-05 117 rna-XM_011094069.2 32739443 9 17727869 17727985 Sesamum indicum 4182 CAG|GTACAGATGT...TATGTTTTGGTT/TGGGTTCTAACA...TGCAG|GAA 0 1 20.059
183116202 GT-AG 0 3.288825496661606e-05 899 rna-XM_011094069.2 32739443 10 17724700 17725598 Sesamum indicum 4182 CAG|GTGGGCTTTT...GGTTTTTTAATC/TTTAATCTTATT...TTCAG|TTA 2 1 52.217
183116203 GT-AG 0 1.000000099473604e-05 635 rna-XM_011094069.2 32739443 11 17721467 17722101 Sesamum indicum 4182 CAG|GTAAATTTAC...ATGATCATATTG/CTAATGATCATA...TTCAG|GGA 2 1 89.021
183116204 GT-AG 0 1.000000099473604e-05 210 rna-XM_011094069.2 32739443 12 17720932 17721141 Sesamum indicum 4182 CAG|GTTCGACATT...CATATCTTATCT/TCATATCTTATC...TGCAG|AAT 0 1 93.625
183125137 GT-AG 0 0.0002430281195525 1406 rna-XM_011094069.2 32739443 1 17731779 17733184 Sesamum indicum 4182 CAG|GTAGGCTTGA...TTTTTCTGAAAT/TTGCTATTTATT...TGTAG|ATT   0 5.567

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