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)

10 rows where transcript_id = 34322223

✎ 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
192366184 GT-AG 0 4.906434256996485e-05 4259 rna-XM_022941816.1 34322223 1 1811576 1815834 Stylophora pistillata 50429 ATG|GTAAGTTTTC...TACACTTTTACT/TACACTTTTACT...TGCAG|GCA 0 1 0.192
192366185 GT-AG 0 1.000000099473604e-05 411 rna-XM_022941816.1 34322223 2 1816064 1816474 Stylophora pistillata 50429 CAT|GTAGGTTGAT...CAAATTTCATTC/ACAAATTTCATT...CTCAG|TTT 1 1 7.532
192366186 GT-AG 0 1.000000099473604e-05 288 rna-XM_022941816.1 34322223 3 1816750 1817037 Stylophora pistillata 50429 GAG|GTACGAGACA...TGATTTTTAACC/TGATTTTTAACC...TTTAG|ATC 0 1 16.346
192366187 GT-AG 0 1.000000099473604e-05 272 rna-XM_022941816.1 34322223 4 1817288 1817559 Stylophora pistillata 50429 CGG|GTAAGACCAG...CTAATTTTAGTT/ATGATACTAATT...TTTAG|GAT 1 1 24.359
192366188 TG-AA 0 0.0979555340020934 5304 rna-XM_022941816.1 34322223 5 1818333 1823636 Stylophora pistillata 50429 TAC|TGATTCATGA...GGAACTTCAATT/CTTCAATTCAAC...TTTAA|ATT 0 1 49.135
192366189 GT-AG 0 7.264621663676451e-05 404 rna-XM_022941816.1 34322223 6 1823766 1824169 Stylophora pistillata 50429 TTG|GTAAGCATTA...TTCTTTGTAATT/TTCTTTGTAATT...GTCAG|TTG 0 1 53.269
192366190 GT-AG 0 3.247775921624161e-05 1952 rna-XM_022941816.1 34322223 7 1824357 1826308 Stylophora pistillata 50429 CAG|GTAATTTTTG...TAACTCTGATCA/CTAACTCTGATC...TTCAG|CAT 1 1 59.263
192366191 GT-AG 0 1.000000099473604e-05 601 rna-XM_022941816.1 34322223 8 1826575 1827175 Stylophora pistillata 50429 GAG|GTAAATTGAA...GTGCATTTAAAT/GTGCATTTAAAT...CACAG|ATA 0 1 67.788
192366192 GT-AG 0 1.000000099473604e-05 1360 rna-XM_022941816.1 34322223 9 1827432 1828791 Stylophora pistillata 50429 CAG|GTGAGATATT...TTTTCAATAACT/ACAATTTTCAAT...CACAG|CCA 1 1 75.994
192366193 GT-AG 0 0.0004736904214558 199 rna-XM_022941816.1 34322223 10 1828954 1829152 Stylophora pistillata 50429 AAG|GTATGTAATA...TTAGTTTTATTT/ATTAGTTTTATT...TTCAG|ATA 1 1 81.186

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