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

✎ 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
210095500 GT-AG 0 3.747972743567893e-05 2435 rna-XM_034835709.1 38062736 1 1946353 1948787 Vitis riparia 96939 CGG|GTAATTTTAT...AAGTCCCTGACT/TGGGTGCTCATC...TTTAG|GGT 2 1 2.526
210095501 GT-AG 0 4.821006667717543e-05 1803 rna-XM_034835709.1 38062736 3 1943824 1945626 Vitis riparia 96939 AAT|GTAATTTACA...ATAGCCTCATCT/TATAGCCTCATC...TACAG|GAC 0 1 7.578
210095502 GT-AG 0 0.000117955544777 10365 rna-XM_034835709.1 38062736 4 1927478 1937842 Vitis riparia 96939 CAG|GTATATGAAT...AAGCCCTTACTC/ATGTCACTAACA...GGCAG|GCT 2 1 49.313
210095503 GT-AG 0 1.000000099473604e-05 600 rna-XM_034835709.1 38062736 5 1925376 1925975 Vitis riparia 96939 TTG|GTAAGACAAA...TTATCCTAAATC/ATTTTATTTATT...TCTAG|GGG 1 1 59.793
210095504 GT-AG 0 0.1288731226251001 5758 rna-XM_034835709.1 38062736 6 1919354 1925111 Vitis riparia 96939 TTG|GTATTTTTTT...CTGTCATTAATA/CTGTCATTAATA...TTCAG|GTA 1 1 61.636
210095505 GT-AG 0 0.0009664110751531 4349 rna-XM_034835709.1 38062736 7 1914784 1919132 Vitis riparia 96939 CAG|GTATTATTAG...ATTCTTTTATTT/AATTCTTTTATT...TTCAG|GTG 0 1 63.178
210095506 GT-AG 0 0.0007944446573411 5358 rna-XM_034835709.1 38062736 8 1909154 1914511 Vitis riparia 96939 TAG|GTATGTTGAC...TTTTTCTTGTCA/AAATTTCTGATA...TCCAG|GCG 2 1 65.076
210095507 GT-AG 0 1.000000099473604e-05 271 rna-XM_034835709.1 38062736 9 1905825 1906095 Vitis riparia 96939 CAG|GTAAAACCGT...TGTCCTTTGATA/AAGTGTCTTATT...CCCAG|ATT 0 1 86.414
210095508 GT-AG 0 0.0104782146923477 698 rna-XM_034835709.1 38062736 10 1904994 1905691 Vitis riparia 96939 CAG|GTAGCTTCTT...TGTTCCTTCTAT/GTTTCTCTCAGA...TGCAG|ATA 1 1 87.342
210095509 GT-AG 0 1.6796033054365875e-05 115 rna-XM_034835709.1 38062736 11 1904361 1904475 Vitis riparia 96939 GAG|GTACATGACC...TTTCCATTAATC/ATTAATCTGATA...CCCAG|GAA 0 1 90.957
210095510 GT-AG 0 1.000000099473604e-05 3483 rna-XM_034835709.1 38062736 12 1899963 1903445 Vitis riparia 96939 CAG|GTTTGGCCCT...GATTTCTTCATG/GATTTCTTCATG...TGCAG|CTG 0 1 97.341
210095511 GT-AG 0 1.000000099473604e-05 810 rna-XM_034835709.1 38062736 13 1898970 1899779 Vitis riparia 96939 CAG|GTTTGTAACT...TTAGTGTTGATG/TTAGTGTTGATG...AGCAG|GAA 0 1 98.618

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