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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, is_minor, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
11203760 AT-AC 1 99.99999955765534 605 rna-XM_010164145.1 2065683 1 97557 98161 Antrostomus carolinensis 279965 CAG|ATATCCTCCT...TTTTCCTTAACC/ATTTTCCTTAAC...CATAC|ATG 2 1 0.731
11203761 GT-AG 0 1.000000099473604e-05 3895 rna-XM_010164145.1 2065683 2 93538 97432 Antrostomus carolinensis 279965 AAG|GTGAGGAATA...ATTTTTTTGTTT/GTTGGGTTAATT...TTCAG|AAA 0 1 7.21
11203762 GT-AG 0 0.0010028689381275 7000 rna-XM_010164145.1 2065683 3 86303 93302 Antrostomus carolinensis 279965 AAG|GTATGCACAG...AATTCTTTGCTT/TTTAGCTTCACA...TTCAG|TGA 1 1 19.488
11203763 GT-AG 0 0.0001187551133159 2319 rna-XM_010164145.1 2065683 4 83782 86100 Antrostomus carolinensis 279965 CAG|GTATGTAGAT...TTTTTCTTGTTT/TTGGTTGTAAAT...TGAAG|TGC 2 1 30.042
11203764 GT-AG 0 0.0134850160717474 2868 rna-XM_010164145.1 2065683 5 80769 83636 Antrostomus carolinensis 279965 GTG|GTATGTATAT...TATTTCTTAATA/TTATTTCTTAAT...TCCAG|GCA 0 1 37.618
11203765 GT-AG 0 1.000000099473604e-05 8069 rna-XM_010164145.1 2065683 6 72547 80615 Antrostomus carolinensis 279965 GAG|GTAATAACAT...TACTGTTTAACC/TACTGTTTAACC...TACAG|GCA 0 1 45.611
11203766 GT-AG 0 0.0274358621106261 2296 rna-XM_010164145.1 2065683 7 70023 72318 Antrostomus carolinensis 279965 AAG|GTAACTTTTG...CTTTTTTTATTC/ACTTTTTTTATT...ATTAG|GTA 0 1 57.524
11203767 GT-AG 0 0.0001347105975455 1594 rna-XM_010164145.1 2065683 8 68272 69865 Antrostomus carolinensis 279965 TAG|GTAATTTATT...TTCTTCTTACCA/TTTCTTCTTACC...TTCAG|CTA 1 1 65.726
11203768 GT-AG 0 0.0004096143519772 11058 rna-XM_010164145.1 2065683 9 57097 68154 Antrostomus carolinensis 279965 TGG|GTATGTAGGT...TCAATTTTAATT/TTTTAATTCACT...TATAG|TGG 1 1 71.839
11203769 GT-AG 0 0.0006527660291618 3059 rna-XM_010164145.1 2065683 10 53865 56923 Antrostomus carolinensis 279965 AGG|GTAAGCTTAG...ACAACTTTAATT/TTAATTCTTACA...TTCAG|CTA 0 1 80.878
11203770 GT-AG 0 1.000000099473604e-05 1415 rna-XM_010164145.1 2065683 11 52317 53731 Antrostomus carolinensis 279965 ATG|GTGAGCATCA...TGTATTTTAATA/TGTATTTTAATA...ACTAG|CTT 1 1 87.827
11203771 GT-AG 0 1.000000099473604e-05 3117 rna-XM_010164145.1 2065683 12 49050 52166 Antrostomus carolinensis 279965 AAG|GTAATATTTT...ATAACCTTTCTG/CTGTGGTTAATA...TACAG|GTT 1 1 95.664

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