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)

13 rows where transcript_id = 6439365

✎ 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
33380436 AT-AG 0 0.000148651727753 92 rna-XM_030631774.1 6439365 2 93500775 93500866 Cannabis sativa 3483 CAG|ATAGTCATTT...AAATCCATAAGA/GAAATACTAACA...TCCAG|CAG 1 1 18.78
33380437 GT-AG 0 1.000000099473604e-05 172 rna-XM_030631774.1 6439365 3 93500447 93500618 Cannabis sativa 3483 GTG|GTAAAAAGAA...AGAGCTTTAATA/AATAGTTTTATA...TGTAG|TTA 1 1 22.681
33380438 GT-AG 0 1.000000099473604e-05 87 rna-XM_030631774.1 6439365 4 93500238 93500324 Cannabis sativa 3483 AAG|GTTGAAATAT...TAGTTCTTATCC/GTAGTTCTTATC...TTCAG|GGT 0 1 25.731
33380439 GT-AG 0 0.0003094591328833 217 rna-XM_030631774.1 6439365 5 93499807 93500023 Cannabis sativa 3483 TCG|GTATGGCCGA...TTACTCTTAAAT/TCGTTTCTAATG...TACAG|ATC 1 1 31.083
33380440 GT-AG 0 7.2667872456507e-05 96 rna-XM_030631774.1 6439365 6 93499473 93499568 Cannabis sativa 3483 TTA|GTAAGTTATA...TATTGTTTATCA/TTGTTTATCACT...TGTAG|TGG 2 1 37.034
33380441 GT-AG 0 1.000000099473604e-05 107 rna-XM_030631774.1 6439365 7 93499215 93499321 Cannabis sativa 3483 TTT|GTAAGTGGTA...CATATGTTAATT/TAATATCTGATT...TGAAG|GCT 0 1 40.81
33380442 GT-AA 0 0.0009957695052931 3107 rna-XM_030631774.1 6439365 8 93495764 93498870 Cannabis sativa 3483 ATA|GTACTGGTTT...GTGCCTTTATCA/TGTGCCTTTATC...AAAAA|CTA 2 1 49.412
33380443 GT-AG 0 0.122510429576689 273 rna-XM_030631774.1 6439365 9 93494643 93494915 Cannabis sativa 3483 ATG|GTATTTTTCT...TATGTCTTATTT/TTATGTCTTATT...CCCAG|GAC 1 1 70.618
33380444 GT-AG 0 1.000000099473604e-05 129 rna-XM_030631774.1 6439365 10 93494394 93494522 Cannabis sativa 3483 TGG|GTAAAGATTA...AACATTTTGGTT/ATTTGGCTAAGC...TGCAG|CTA 1 1 73.618
33380445 GT-AG 0 9.132583811778557e-05 87 rna-XM_030631774.1 6439365 11 93494179 93494265 Cannabis sativa 3483 AAG|GTATAGATTT...TATGCATTAGTT/TTAAAATTCATT...GTCAG|GGC 0 1 76.819
33380446 GT-AG 0 0.0015438902801603 86 rna-XM_030631774.1 6439365 12 93493882 93493967 Cannabis sativa 3483 TTG|GTATGTCCTG...ATTTTCTAAGTA/ATATTACTTATG...TGCAG|ACA 1 1 82.096
33380447 GT-AG 0 0.0031635876068601 125 rna-XM_030631774.1 6439365 13 93493519 93493643 Cannabis sativa 3483 ATA|GTAAGTTCTT...TTTTCTTTAACT/TTTTCTTTAACT...GGCAG|TGG 2 1 88.047
33380448 GT-AG 0 1.000000099473604e-05 117 rna-XM_030631774.1 6439365 14 93493251 93493367 Cannabis sativa 3483 TAT|GTGAGTTTGA...AAGTTATTGATT/AAGTTATTGATT...TACAG|GCT 0 1 91.823

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