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

✎ 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
196000863 GT-AG 0 1.000000099473604e-05 1610 rna-XM_043864907.1 34796225 1 21980041 21981650 Telopea speciosissima 54955 TTG|GTAAGATGGC...GTTTCTATAGTT/ACTTGGCTCATC...TACAG|ATT 0 1 21.18
196000864 GT-AG 0 1.000000099473604e-05 93 rna-XM_043864907.1 34796225 2 21981717 21981809 Telopea speciosissima 54955 CAG|GTTTGATGGG...TGTGTTTTAATG/TGTGTTTTAATG...TACAG|CAT 0 1 22.743
196000865 GT-AG 0 0.0950524066643898 126 rna-XM_043864907.1 34796225 3 21981945 21982070 Telopea speciosissima 54955 GTG|GTATGCTTGA...TATTTGTTACTC/TATATGCTGATA...GTCAG|GAA 0 1 25.942
196000866 GT-AG 0 1.000000099473604e-05 197 rna-XM_043864907.1 34796225 4 21982137 21982333 Telopea speciosissima 54955 CTG|GTGAGTTCTC...TGATACTTGATG/TTCGTATTCAAA...TACAG|GTG 0 1 27.505
196000867 GT-AG 0 2.0094838811963296e-05 106 rna-XM_043864907.1 34796225 5 21982520 21982625 Telopea speciosissima 54955 GAG|GTTTGTGACA...CTCTCCTTGATG/ACATTTTTTATT...TGCAG|ATT 0 1 31.912
196000868 GT-AG 0 0.0010501374432273 97 rna-XM_043864907.1 34796225 6 21982713 21982809 Telopea speciosissima 54955 ACT|GTATGATACC...GACATCATAATT/GTGGTATTCAAA...TGCAG|GAG 0 1 33.973
196000869 GT-AG 0 8.528658405753504e-05 118 rna-XM_043864907.1 34796225 7 21982924 21983041 Telopea speciosissima 54955 ATG|GTTTGTTTTC...GTTATCTTGGAG/ATCGCACTAATT...TTTAG|GTG 0 1 36.674
196000870 GT-AG 0 1.000000099473604e-05 83 rna-XM_043864907.1 34796225 8 21983167 21983249 Telopea speciosissima 54955 AGG|GTATGGGACT...GATTTGTTGATT/ATTTTCCTCATG...CACAG|GGC 2 1 39.635
196000871 GT-AG 0 2.701120618415392 21727 rna-XM_043864907.1 34796225 9 21983359 22005085 Telopea speciosissima 54955 GCT|GTAACCATCT...ACTTTCTTATAC/TGTTTTCTAACA...CAGAG|ATG 0 1 42.217
196000872 GT-AG 0 0.0021217570591096 131 rna-XM_043864907.1 34796225 10 22005391 22005521 Telopea speciosissima 54955 CAG|GTATGTTCTG...GATATTTTGATG/GATATTTTGATG...TTTAG|GGA 2 1 49.443
196000873 GT-AG 0 0.0343382079776016 1947 rna-XM_043864907.1 34796225 11 22005650 22007596 Telopea speciosissima 54955 TTG|GTATGCATAT...TAGTTCTTACTG/TTAGTTCTTACT...AACAG|GCC 1 1 52.476
196000874 GT-AG 0 1.000000099473604e-05 1199 rna-XM_043864907.1 34796225 12 22008424 22009622 Telopea speciosissima 54955 CAG|GTAATTACAT...TGAATCTTAGAA/TTTCTTGTGAAT...ATTAG|GTA 0 1 72.068
196014324 GT-AG 0 1.000000099473604e-05 992 rna-XM_043864907.1 34796225 13 22010309 22011300 Telopea speciosissima 54955 AAG|GTCAGAGCTA...TTTTTCTAAATA/TTTTTTCTAAAT...CACAG|GAA   0 88.32

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