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

✎ 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
109623030 GT-AG 0 6.0556709247445504e-05 1878 rna-XM_042638207.1 20429340 1 35550230 35552107 Macadamia integrifolia 60698 TAG|GTACGTTACT...ATTTTCTGATCA/AATTTTCTGATC...TTCAG|GAA 1 1 20.346
109623031 GT-AG 0 1.000000099473604e-05 504 rna-XM_042638207.1 20429340 2 35549560 35550063 Macadamia integrifolia 60698 CAT|GTAAGTAGTA...ACAGTATTATAT/GTATTATATATC...TGCAG|GGT 2 1 26.453
109623032 GT-AG 0 1.000000099473604e-05 152 rna-XM_042638207.1 20429340 3 35549359 35549510 Macadamia integrifolia 60698 GAG|GTTAAATCAA...AAATCCTAAATG/GTGTAATTAACA...GGCAG|ATC 0 1 28.256
109623033 GT-AG 0 7.335469102889456e-05 295 rna-XM_042638207.1 20429340 4 35548950 35549244 Macadamia integrifolia 60698 GAG|GTACGTTCAT...GTATTCATAATG/TTTGTATTCATA...GACAG|ATT 0 1 32.45
109623034 GT-AG 0 1.000000099473604e-05 846 rna-XM_042638207.1 20429340 5 35547675 35548520 Macadamia integrifolia 60698 AAG|GTTAGCCCCT...TCTTTCTGAATG/GTCTTTCTGAAT...TACAG|GTA 0 1 48.234
109623035 GT-AG 0 0.0007382204607397 136 rna-XM_042638207.1 20429340 6 35547149 35547284 Macadamia integrifolia 60698 ACA|GTAAGCTTCT...TGTGCTCCAACC/AATCTATTTATG...CACAG|ACA 0 1 62.583
109623036 GT-AG 0 1.000000099473604e-05 95 rna-XM_042638207.1 20429340 7 35546955 35547049 Macadamia integrifolia 60698 AAG|GTAAGATCTA...TGGTTCTTGAAT/CAATTTGTAATT...TTTAG|ATT 0 1 66.225
109623037 GT-AG 0 0.0095992683731724 166 rna-XM_042638207.1 20429340 8 35546673 35546838 Macadamia integrifolia 60698 ATG|GTATATATTT...ATAATTTTATCC/TATAATTTTATC...TTCAG|GCA 2 1 70.493
109623038 GT-AG 0 0.0005001994283424 696 rna-XM_042638207.1 20429340 9 35545874 35546569 Macadamia integrifolia 60698 AAG|GTAACTAGTG...TAAGCCTTTATG/TTTGGTTTAAAT...CACAG|GTA 0 1 74.283
109623039 GT-AG 0 0.0006505643921066 227 rna-XM_042638207.1 20429340 10 35545585 35545811 Macadamia integrifolia 60698 GAG|GTAAATTTTC...ATTGCCTTGAAA/AATACTGTTATA...AACAG|GTT 2 1 76.564
109623040 GT-AG 0 1.1403709356080046e-05 142 rna-XM_042638207.1 20429340 11 35544919 35545060 Macadamia integrifolia 60698 TTG|GTAAGCTAAA...TATAATTTGATT/ATTTGATTGACT...TGTAG|GGG 1 1 95.843

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