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

✎ 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
11203838 GT-AG 0 1.000000099473604e-05 1311 rna-XM_010165691.2 2065692 1 83150 84460 Antrostomus carolinensis 279965 CAG|GTAAGTTGTT...TAAATTTTAAAA/TCTTGTTTCAGC...TTCAG|GTA 1 1 3.432
11203839 GT-AG 0 1.000000099473604e-05 1301 rna-XM_010165691.2 2065692 2 81736 83036 Antrostomus carolinensis 279965 ATG|GTGAGTTTGC...GCTTTCTTGGCT/CAGCTTCCCATC...TGCAG|GCA 0 1 10.891
11203840 GT-AG 0 1.000000099473604e-05 529 rna-XM_010165691.2 2065692 4 80813 81341 Antrostomus carolinensis 279965 ACA|GTAAGAGCAT...CAGTTTTTTATG/CAGTTTTTTATG...TTTAG|CAT 0 1 36.832
11203841 GT-AG 0 1.000000099473604e-05 389 rna-XM_010165691.2 2065692 5 80336 80724 Antrostomus carolinensis 279965 TTG|GTGAGCAGTC...GAGTCCTCACAT/TGAATGCTCATT...TACAG|GAA 1 1 42.64
11203842 GT-AG 0 1.000000099473604e-05 434 rna-XM_010165691.2 2065692 6 79807 80240 Antrostomus carolinensis 279965 AAG|GTAAATACAC...ATGTTTTTACTT/CATGTTTTTACT...ATTAG|GAT 0 1 48.911
11203843 GT-AG 0 1.000000099473604e-05 1143 rna-XM_010165691.2 2065692 7 78550 79692 Antrostomus carolinensis 279965 AAG|GTTTGTGGAG...TTCTCCTTATGC/TTTCTCCTTATG...TTTAG|GGT 0 1 56.436
11203844 GT-AG 0 1.000000099473604e-05 113 rna-XM_010165691.2 2065692 8 78346 78458 Antrostomus carolinensis 279965 CAG|GTTAGATTTG...TGATTCATGACT/TGATGATTCATG...TCCAG|AAT 1 1 62.442
11203845 GT-AG 0 1.000000099473604e-05 95 rna-XM_010165691.2 2065692 9 78171 78265 Antrostomus carolinensis 279965 CAG|GTACTTGCAT...TGTATCTTCACA/AAAATGCTCACC...TTCAG|GGA 0 1 67.723
11203846 GT-AG 0 1.000000099473604e-05 902 rna-XM_010165691.2 2065692 10 77212 78113 Antrostomus carolinensis 279965 CAG|GTCAGTAGAA...CTTTTCTCAGTA/GCTTTTCTCAGT...TTTAG|GAG 0 1 71.485
11203847 GT-AG 0 1.000000099473604e-05 967 rna-XM_010165691.2 2065692 11 76151 77117 Antrostomus carolinensis 279965 CAG|GTAATGGTGT...GACTCCTGAAAG/GTGAAGCTGACT...AACAG|TCT 1 1 77.69
11203848 GT-AG 0 0.0004485826405857 2606 rna-XM_010165691.2 2065692 12 73449 76054 Antrostomus carolinensis 279965 TAG|GTATGTGTCA...ATTTCTGTAACA/TGAGTTCTGATT...TGCAG|TTA 1 1 84.026
11203849 GT-AG 0 1.000000099473604e-05 579 rna-XM_010165691.2 2065692 13 72811 73389 Antrostomus carolinensis 279965 AAG|GTAGGTGCCT...ACATTGTTAATA/TATATTGTTATT...TTCAG|GGA 0 1 87.921
11203850 GT-AG 0 1.000000099473604e-05 2085 rna-XM_010165691.2 2065692 14 70603 72687 Antrostomus carolinensis 279965 ACT|GTAAGACTTG...AAGTCTTCAACT/CTCTATTTCAAA...TCCAG|GGT 0 1 96.04

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