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

✎ 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
110536981 GT-AG 0 1.000000099473604e-05 456 rna-XM_008371896.3 20642336 2 23167397 23167852 Malus domestica 3750 GAG|GTGATTACTA...TGCTTTTTGAAT/TTTGCATTTATT...TTTAG|AAT 0 1 11.814
110536982 GT-AG 0 1.000000099473604e-05 433 rna-XM_008371896.3 20642336 3 23168696 23169128 Malus domestica 3750 CAG|GTTTGAATTT...TTCTTCTTGTTA/CTTCTTGTTATT...CTCAG|TCT 0 1 35.302
110536983 GT-AG 0 0.0003550101767037 1089 rna-XM_008371896.3 20642336 4 23169762 23170850 Malus domestica 3750 AAG|GTATGTCTTC...TCTTTTTTCGTT/AATTTATTTATA...TTCAG|CCT 0 1 52.94
110536984 GT-AG 0 1.000000099473604e-05 2954 rna-XM_008371896.3 20642336 5 23170953 23173906 Malus domestica 3750 GAG|GTAAGCCAAA...TGTTTTTTAGAT/AACTACTTAATT...TTCAG|ATT 0 1 55.782
110536985 GT-AG 0 0.1358804182408567 393 rna-XM_008371896.3 20642336 6 23174023 23174415 Malus domestica 3750 CTT|GTATGTTTAC...TGACCTTTAAGT/AGACCATTGACC...TGCAG|CAG 2 1 59.014
110536986 GT-AG 0 1.000000099473604e-05 233 rna-XM_008371896.3 20642336 7 23174594 23174826 Malus domestica 3750 AAG|GTAATTATTT...CTACCCCTATAT/GTGGTGTTCACA...TGCAG|CCA 0 1 63.973
110536987 GT-AG 0 1.000000099473604e-05 121 rna-XM_008371896.3 20642336 8 23175322 23175442 Malus domestica 3750 ACT|GTAAGAATCT...GTGAATTTGATG/ATGTAACTAATC...GACAG|GTA 0 1 77.765
110536988 GT-AG 0 0.0091767358865822 333 rna-XM_008371896.3 20642336 9 23175584 23175916 Malus domestica 3750 AAG|GTATATTTGA...ATGTTCTCATCA/TATGTTCTCATC...GCCAG|GTG 0 1 81.694
110536989 GT-AG 0 1.000000099473604e-05 328 rna-XM_008371896.3 20642336 10 23175977 23176304 Malus domestica 3750 CAG|GTTGGTGATC...GAGTCTTTCATG/TTATTCCTCATA...TTCAG|TGC 0 1 83.366
110536990 GT-AG 0 1.000000099473604e-05 602 rna-XM_008371896.3 20642336 11 23176436 23177037 Malus domestica 3750 AAG|GTCAGTAACA...TGACCCTTAATA/ATATTGTTCAAC...TGTAG|CTT 2 1 87.016
110536991 GT-AG 0 1.000000099473604e-05 93 rna-XM_008371896.3 20642336 12 23177172 23177264 Malus domestica 3750 TGG|GTGCGCATCT...TAACTCTTCCTT/TGTATAATAACT...TGCAG|ATC 1 1 90.75
110536992 GT-AG 0 0.0001890091085349 154 rna-XM_008371896.3 20642336 13 23177498 23177651 Malus domestica 3750 AAG|GTAGATTTTA...TTATGTTTGATG/TTATGTTTGATG...TGCAG|CCT 0 1 97.242
110542853 GT-AG 0 0.001855498199983 139 rna-XM_008371896.3 20642336 1 23167186 23167324 Malus domestica 3750 AAG|GTACCGATAT...TTTGTTTTGATT/TTTGTTTTGATT...AGCAG|GAT   0 10.142

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