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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, length, 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
73762739 GT-AG 0 0.0001780675186386 113 rna-XM_012975148.1 13851062 2 2651637 2651749 Erythranthe guttata 4155 GAA|GTAAGTTTGG...CGAGCCTTATTG/TATTGACTTATC...TTTAG|GTT 0 1 51.191
73762740 GT-AG 0 1.000000099473604e-05 84 rna-XM_012975148.1 13851062 3 2652071 2652154 Erythranthe guttata 4155 AAG|GTTTGAACAT...GTTTTCGGATTA/AGAATATTTATG...TGCAG|GAG 0 1 57.461
73762741 GT-AG 0 0.0023332526824424 193 rna-XM_012975148.1 13851062 4 2652242 2652434 Erythranthe guttata 4155 TTG|GTACCGTCTT...GTACTTGTACCT/CACGTAATTATT...TGTAG|GTT 0 1 59.16
73762742 GT-AG 0 0.1950344439682664 93 rna-XM_012975148.1 13851062 5 2653134 2653226 Erythranthe guttata 4155 CGT|GTATGCTGAC...TCTGTTTTAGTA/TAATTGTTTATT...TATAG|GTG 0 1 72.812
73762743 GT-AG 0 5.364883811022948e-05 95 rna-XM_012975148.1 13851062 6 2653392 2653486 Erythranthe guttata 4155 CAG|GTAGGTTTAT...TTTTTTTTGGCT/TCTTGTATAAAA...TGCAG|AAA 0 1 76.035
73762744 GT-AG 0 1.9929579406273043e-05 159 rna-XM_012975148.1 13851062 7 2653782 2653940 Erythranthe guttata 4155 CAA|GTACGTAAAA...TTTATATTGACT/TTTATATTGACT...TTTAG|GTA 1 1 81.797
73762745 GT-AG 0 0.0001730490504853 84 rna-XM_012975148.1 13851062 8 2654156 2654239 Erythranthe guttata 4155 AAG|GTGTGCACTT...TTGTCTTTAATT/TTGTCTTTAATT...TCTAG|GTT 0 1 85.996
73762746 GT-AG 0 0.0003556516400483 228 rna-XM_012975148.1 13851062 9 2654546 2654773 Erythranthe guttata 4155 CAG|GTACACATAT...TATATCGTAATT/ATAATATTTATA...TGCAG|GCA 0 1 91.973
73762747 GT-AG 0 1.000000099473604e-05 108 rna-XM_012975148.1 13851062 10 2654838 2654945 Erythranthe guttata 4155 CAG|GTAAATTAAA...TTTTTTTTTTCA/TTTTTTTTCAAA...GGCAG|TTA 1 1 93.223
73762748 GT-AG 0 1.000000099473604e-05 109 rna-XM_012975148.1 13851062 11 2655186 2655294 Erythranthe guttata 4155 ATG|GTGCGCTACA...ATTTTTTGGATC/CAGTGGTTGATA...TGCAG|GTC 1 1 97.91
73767373 GT-AG 0 1.000000099473604e-05 146 rna-XM_012975148.1 13851062 1 2649220 2649365 Erythranthe guttata 4155 CAG|GTTAGTTTCT...TTTCTCTTAGGT/TCTTTTTTCATG...GTTAG|GTT   0 10.41

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