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

✎ 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
104744330 GT-AG 0 1.000000099473604e-05 2391 rna-XM_009949576.1 19533842 1 7949 10339 Leptosomus discolor 188344 AAG|GTAAGGTTGG...CCTGCCTTGGTT/TGCTGGCTAATG...TTCAG|GCT 0 1 7.752
104744331 GT-AG 0 2.7947448572207755e-05 2757 rna-XM_009949576.1 19533842 2 10511 13267 Leptosomus discolor 188344 GGG|GTCTGTTACT...GGCCTCTTTGCT/TCTTTGCTAACC...TTTAG|GGA 0 1 16.589
104744332 GT-AG 0 1.1719740996739477e-05 2861 rna-XM_009949576.1 19533842 3 13382 16242 Leptosomus discolor 188344 GTG|GTAAGTTGAA...AACCTCTTACCT/CAACCTCTTACC...CACAG|GAC 0 1 22.481
104744333 GT-AG 0 1.000000099473604e-05 485 rna-XM_009949576.1 19533842 4 16350 16834 Leptosomus discolor 188344 TAG|GTAAGAGGGG...ATGGCCTTGGCT/CTGCTGCTGAAT...TTCAG|GAC 2 1 28.01
104744334 GT-AG 0 1.000000099473604e-05 633 rna-XM_009949576.1 19533842 5 16952 17584 Leptosomus discolor 188344 CAG|GTGAGGGTGA...GTCTTCTGAGAA/TGTCTTCTGAGA...CCCAG|ACA 2 1 34.057
104744335 GT-AG 0 1.000000099473604e-05 395 rna-XM_009949576.1 19533842 6 17808 18202 Leptosomus discolor 188344 GAT|GTGAGTGACA...TCAACCTTGTTG/ATTTCGCTCATT...CGCAG|CCT 0 1 45.581
104744336 GT-AG 0 0.0002432695854194 96 rna-XM_009949576.1 19533842 7 18260 18355 Leptosomus discolor 188344 GAG|GTAACGTGCT...ATTGCATTAGCC/GCTGATTGCATT...GGCAG|GAT 0 1 48.527
104744337 GT-AG 0 1.000000099473604e-05 410 rna-XM_009949576.1 19533842 8 18497 18906 Leptosomus discolor 188344 AAG|GTGTGGATCT...ATGGTCTAAAAT/GATGGTCTAAAA...TCCAG|AAA 0 1 55.814
104744338 GT-AG 0 4.860822442529875e-05 657 rna-XM_009949576.1 19533842 9 18998 19654 Leptosomus discolor 188344 AAT|GTAAGTTGGT...TTTTTTTTTCCT/TTTTTTTTCCTC...TGCAG|CGC 1 1 60.517
104744339 GT-AG 0 1.000000099473604e-05 1303 rna-XM_009949576.1 19533842 10 19807 21109 Leptosomus discolor 188344 ATA|GTGAGTATAG...ACTACCTTGCTC/GATGCTTTCAGT...CATAG|GTC 0 1 68.372
104744340 GT-AG 0 3.01720564529661e-05 658 rna-XM_009949576.1 19533842 12 21182 21839 Leptosomus discolor 188344 ACG|GTAAGCACCG...CAGTTTTTATTT/TTATTTTTCATT...CCCAG|TGT 1 1 71.99
104744341 GT-AG 0 1.000000099473604e-05 1162 rna-XM_009949576.1 19533842 13 22005 23166 Leptosomus discolor 188344 ATG|GTAAGAGACT...AATTTCTTGCTG/TCTCTACTCAAT...CCCAG|GGA 1 1 80.517
104744342 GT-AG 0 0.0031004288642682 466 rna-XM_009949576.1 19533842 14 23389 23854 Leptosomus discolor 188344 GCT|GTAGTTTACC...GTGTATTTAATT/ATTTAATTCACT...CTGAG|CTT 1 1 91.99

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