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)

11 rows where transcript_id = 15198801

✎ 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
82239334 GT-AG 0 0.0997439269663185 902 rna-XM_031064029.1 15198801 1 18013723 18014624 Geospiza fortis 48883 CTG|GTATACATGT...TTCATTTTAATT/GTGTTCTTCATT...TTCAG|TGA 2 1 7.545
82239335 GT-AG 0 0.0025662719491948 1596 rna-XM_031064029.1 15198801 2 18011994 18013589 Geospiza fortis 48883 GAT|GTATGTCACA...TTAACTTTATAA/TATTTGCTAACA...TATAG|GAA 0 1 15.034
82239336 GT-AG 0 1.000000099473604e-05 763 rna-XM_031064029.1 15198801 3 18011088 18011850 Geospiza fortis 48883 AAG|GTAAGGAAAT...TCATCTATGACA/AAGGTTTTCATC...TTCAG|AGT 2 1 23.086
82239337 GT-AG 0 0.024070260444112 156 rna-XM_031064029.1 15198801 4 18010806 18010961 Geospiza fortis 48883 AGA|GTATGTTAAT...CTTTCTTTGAAT/TTAATTCTCATT...TTCAG|GCT 2 1 30.18
82239338 GT-AG 0 0.0001463334775285 1802 rna-XM_031064029.1 15198801 5 18008827 18010628 Geospiza fortis 48883 ACT|GTAAATAACA...ATTCTTTTGAAT/ATTCTTTTGAAT...ATTAG|TGA 2 1 40.146
82239339 GT-AG 0 0.0003380229116468 1391 rna-XM_031064029.1 15198801 6 18007245 18008635 Geospiza fortis 48883 CAG|GTATTTGATA...TTTTTTTTGCTG/GTTCCCTCTACT...TGCAG|AGT 1 1 50.901
82239340 GT-AG 0 1.000000099473604e-05 1126 rna-XM_031064029.1 15198801 7 18005964 18007089 Geospiza fortis 48883 CAG|GTAAAAATAA...TCTTCCTTCTAA/TTCCTTCTAAAA...AATAG|GTT 0 1 59.628
82239341 GT-AG 0 1.0694607555310962e-05 312 rna-XM_031064029.1 15198801 9 18005125 18005436 Geospiza fortis 48883 AAA|GTGAGTTTTA...GAATCCTTAAAA/ATGCTCCTAAAA...TGTAG|GGG 2 1 77.646
82239342 GT-AG 0 0.0024030250158033 675 rna-XM_031064029.1 15198801 10 18004335 18005009 Geospiza fortis 48883 CCT|GTAAGTTGTG...CTCTTCTTAATT/TTTTAACTTACT...CTCAG|CAC 0 1 84.122
82239343 GT-AG 0 0.0017314342230818 358 rna-XM_031064029.1 15198801 11 18003848 18004205 Geospiza fortis 48883 AGG|GTATGTTATA...TATGTCTTTCCT/GTGTATCTCACT...TACAG|AGA 0 1 91.385
82239344 GT-AG 0 1.000000099473604e-05 827 rna-XM_031064029.1 15198801 12 18002942 18003768 Geospiza fortis 48883 CAG|GTAGGCAAAG...AATATTTTATAT/CAATATTTTATA...TTCAG|GCT 1 1 95.833

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