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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
92255857 GT-AG 0 3.6595768796296736e-05 99 rna-XM_021444925.1 17265354 1 4991262 4991360 Herrania umbratica 108875 TCT|GTAGGTGATT...TGGTTTTTGAAA/GTTTGGTTGATT...TGTAG|GGT 0 1 9.441
92255858 GT-AG 0 9.226364406265112e-05 184 rna-XM_021444925.1 17265354 2 4991531 4991714 Herrania umbratica 108875 CAG|GTTTGTTTGA...GATTTCTAATTT/GGATTTCTAATT...GTCAG|GTG 2 1 14.9
92255859 GT-AG 0 1.000000099473604e-05 404 rna-XM_021444925.1 17265354 3 4991976 4992379 Herrania umbratica 108875 ATG|GTAATGCTTC...CCTTTTTTAATA/CCTTTTTTAATA...TTTAG|GTA 2 1 23.282
92255860 GT-AG 0 1.000000099473604e-05 237 rna-XM_021444925.1 17265354 4 4992525 4992761 Herrania umbratica 108875 AAG|GTACGGCTTC...TTTTCCTCACTT/CTTTTCCTCACT...TTTAG|GCT 0 1 27.938
92255861 GC-AG 0 1.000000099473604e-05 132 rna-XM_021444925.1 17265354 5 4992822 4992953 Herrania umbratica 108875 AAG|GCGAGCATCT...TTTGCTTTAAGT/TTTTGGTTCATT...GCTAG|GCT 0 1 29.865
92255862 GC-AG 0 1.000000099473604e-05 83 rna-XM_021444925.1 17265354 6 4993050 4993132 Herrania umbratica 108875 GAT|GCGAGTATCT...TTGGTTTTGATT/TTGGTTTTGATT...TACAG|ATT 0 1 32.948
92255863 GT-AG 0 0.0030053441442101 123 rna-XM_021444925.1 17265354 7 4993529 4993651 Herrania umbratica 108875 CAT|GTAATCTTTG...CACTTCGTAAAA/CTCGTTTTGAGC...TGCAG|GGG 0 1 45.665
92255864 GT-AG 0 1.000000099473604e-05 549 rna-XM_021444925.1 17265354 8 4993793 4994341 Herrania umbratica 108875 CAA|GTAAGTGCTG...AATATTTTAATT/AATATTTTAATT...CTTAG|GAA 0 1 50.193
92255865 GT-AG 0 1.000000099473604e-05 333 rna-XM_021444925.1 17265354 9 4994513 4994845 Herrania umbratica 108875 CAA|GTGAGAAATT...CCCATCTTACTA/ATCTTACTAACA...TTCAG|GGT 0 1 55.684
92255866 GT-AG 0 3.466101559224178e-05 94 rna-XM_021444925.1 17265354 10 4995104 4995197 Herrania umbratica 108875 GAG|GTAAACATGT...GTTACTATGATT/TTATAGGTTACT...ATCAG|GTC 0 1 63.969
92255867 GT-AG 0 0.0001137660113634 590 rna-XM_021444925.1 17265354 11 4995347 4995936 Herrania umbratica 108875 AAA|GTAAGTTTAC...TTCTTCTTTGCT/AAGATTTTGAAC...TCCAG|ATC 2 1 68.754
92255868 GT-AG 0 1.000000099473604e-05 106 rna-XM_021444925.1 17265354 12 4996474 4996579 Herrania umbratica 108875 GTG|GTAAGTGCTT...TATGTCTTAAAT/TATGTCTTAAAT...TGCAG|GTA 2 1 85.999
92255869 GT-AG 0 1.000000099473604e-05 148 rna-XM_021444925.1 17265354 13 4996851 4996998 Herrania umbratica 108875 AAG|GTAAAGTTGT...TTACCTGTAATT/GGATATCTAACA...TGCAG|TTG 0 1 94.701

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