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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase, in_cds

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
47813100 GT-AG 0 1.000000099473604e-05 320 rna-XM_027262939.1 8855896 2 50522104 50522423 Coffea arabica 13443 AAG|GTAAAATAGC...ACCTGCTTAATT/TCTCTTCTAACT...CTTAG|GTT 0 1 17.003
47813101 GT-AG 0 3.891447202241709e-05 223 rna-XM_027262939.1 8855896 3 50521826 50522048 Coffea arabica 13443 TCC|GTAAGTACTA...GTATGTTTGATA/TTGATACTAACT...ATTAG|AGG 1 1 18.281
47813102 GT-AG 0 4.694743372098462e-05 109 rna-XM_027262939.1 8855896 4 50521541 50521649 Coffea arabica 13443 AAG|GTAACAACCT...TTTTTTTTATTT/TTTTTTTTTATT...TTTAG|GTT 0 1 22.369
47813103 GT-AG 0 0.0032661045834914 146 rna-XM_027262939.1 8855896 7 50521175 50521320 Coffea arabica 13443 ACT|GTATGTCCAT...CCAGCTGTAACC/CCAGCTGTAACC...CCCAG|GTT 0 1 27.387
47813104 GT-AG 0 1.000000099473604e-05 147 rna-XM_027262939.1 8855896 8 50520789 50520935 Coffea arabica 13443 CAT|GTGAGTATTA...AGCCCCTTCATT/CTTTTGCTGATT...TTCAG|GTC 2 1 32.938
47813105 GT-AG 0 0.0001321633617422 165 rna-XM_027262939.1 8855896 10 50520099 50520263 Coffea arabica 13443 AAG|GTTCTTTTTC...TTTTCCTCAAAA/GTTTTCCTCAAA...AGCAG|GGA 0 1 45.087
47813106 GT-AG 0 0.0003150276080766 130 rna-XM_027262939.1 8855896 11 50519695 50519824 Coffea arabica 13443 AAG|GTACTCACCA...TTCTTCTTTACA/TTTGTTTTCACT...TTCAG|GTA 1 1 51.452
47813107 GT-AG 0 1.000000099473604e-05 205 rna-XM_027262939.1 8855896 12 50518606 50518810 Coffea arabica 13443 AAG|GTTAGTTTCG...TGAGCATTGGCT/CATTGGCTAAGT...TGCAG|ATG 0 1 71.986
47813108 GT-AG 0 2.815875395293949e-05 131 rna-XM_027262939.1 8855896 13 50518208 50518338 Coffea arabica 13443 CGT|GTAAGTACAG...AACCTCTTAATA/TCTTGCTTGATT...TGCAG|GTT 0 1 78.188
47813109 GT-AG 0 1.000000099473604e-05 96 rna-XM_027262939.1 8855896 14 50517848 50517943 Coffea arabica 13443 AAG|GTGATATTGT...TTTTTTTTAGTA/TTTTTTTTTAGT...TTCAG|ACG 0 1 84.321
47813110 GT-AG 0 1.000000099473604e-05 113 rna-XM_027262939.1 8855896 16 50517442 50517554 Coffea arabica 13443 CAG|GTTCGTCTCT...CATTTTTTACAA/CCATTTTTTACA...CAAAG|GGA 0 1 91.08
47819564 GT-AG 0 0.000146921175488 480 rna-XM_027262939.1 8855896 1 50522974 50523453 Coffea arabica 13443 ACT|GTAAGTCGCA...GTATTTTTAATT/TTAATTTTGATT...TCCAG|CTA   0 8.571

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