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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
72997437 GT-AG 0 1.000000099473604e-05 5978 rna-XM_007519693.1 13705575 1 13694063 13700040 Erinaceus europaeus 9365 AAG|GTGAGGTGGC...CTGATTTTGATT/CTGATTTTGATT...GCTAG|ATA 0 1 6.433
72997438 GT-AG 0 1.000000099473604e-05 2041 rna-XM_007519693.1 13705575 2 13700146 13702186 Erinaceus europaeus 9365 AAG|GTAGGTACTT...CCTGTCTGATCT/TCCTGTCTGATC...CCCAG|CCC 0 1 13.255
72997439 GT-AG 0 1.000000099473604e-05 7365 rna-XM_007519693.1 13705575 3 13702328 13709692 Erinaceus europaeus 9365 GCT|GTGAGTACCC...CCTACCCTGATC/CCTACCCTGATC...TGCAG|ACC 0 1 22.417
72997440 GC-AG 0 1.000000099473604e-05 965 rna-XM_007519693.1 13705575 4 13709823 13710787 Erinaceus europaeus 9365 CAG|GCGAGCCACC...TTCTTCTTTTCT/CTAAAATTAAAA...TCCAG|ATG 1 1 30.864
72997441 GT-AG 0 3.8895847539291386e-05 473 rna-XM_007519693.1 13705575 5 13710850 13711322 Erinaceus europaeus 9365 CCC|GTAAGTCCCT...TACCCCTCAACC/GTACCCCTCAAC...TGCAG|TGG 0 1 34.893
72997442 GT-AG 0 1.000000099473604e-05 1633 rna-XM_007519693.1 13705575 6 13711452 13713084 Erinaceus europaeus 9365 GAG|GTAGGACATC...CCTCTCTGAACA/GCAGATCTGACT...CCCAG|GCT 0 1 43.275
72997443 GT-AG 0 0.0572261464882491 3436 rna-XM_007519693.1 13705575 7 13713199 13716634 Erinaceus europaeus 9365 GAG|GTAACCCTCC...GCCCTCTTGATC/TGAGGTCTCACA...TCAAG|GTT 0 1 50.682
72997444 GT-AG 0 1.000000099473604e-05 1852 rna-XM_007519693.1 13705575 8 13716738 13718589 Erinaceus europaeus 9365 ACT|GTGAGTTTCC...GCCACTGTGAAT/GCCACTGTGAAT...CACAG|TGG 1 1 57.375
72997445 GT-AG 0 0.163922125703685 1292 rna-XM_007519693.1 13705575 9 13718775 13720066 Erinaceus europaeus 9365 CAG|GTAGCCTACC...CTTTTTTTGTTT/CTTTTTTTGTTT...GGCAG|ATT 0 1 69.396
72997446 GT-AG 0 1.000000099473604e-05 2068 rna-XM_007519693.1 13705575 10 13720232 13722299 Erinaceus europaeus 9365 GAG|GTACGGGACA...CGACTCTCACCG/CCGACTCTCACC...CGTAG|ATT 0 1 80.117
72997447 GT-AG 0 1.000000099473604e-05 3080 rna-XM_007519693.1 13705575 11 13722458 13725537 Erinaceus europaeus 9365 CTG|GTGAGTGACA...TACCTCTTCAAG/TACCTCTTCAAG...TCTAG|GAT 2 1 90.383
72997448 GT-AG 0 3.300514282087228e-05 4210 rna-XM_007519693.1 13705575 12 13725613 13729822 Erinaceus europaeus 9365 ACT|GTAAGTGTCC...CTGCCCTTTTCT/CTCAGACTCAAC...CACAG|TGG 2 1 95.257

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