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

✎ 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
72997479 GT-AG 0 1.000000099473604e-05 869 rna-XM_016186153.1 13705579 1 488572 489440 Erinaceus europaeus 9365 AGA|GTGAGCGTCT...GGGGCCGCGATC/CGATCGATCAGC...CGCAG|ATG 2 1 4.351
72997480 GT-AG 0 1.000000099473604e-05 235 rna-XM_016186153.1 13705579 2 488175 488409 Erinaceus europaeus 9365 ATG|GTAAAGGGGC...CTCCCTTCGACA/CACACACCCATC...CACAG|GCC 2 1 15.194
72997481 GT-AG 0 1.000000099473604e-05 1221 rna-XM_016186153.1 13705579 3 486913 488133 Erinaceus europaeus 9365 AAG|GTGCAGGGGT...CCCCTCTCAAAC/CCCCCTCTCAAA...CCCAG|GGC 1 1 17.938
72997482 GT-AG 0 1.000000099473604e-05 2525 rna-XM_016186153.1 13705579 4 484193 486717 Erinaceus europaeus 9365 GTG|GTGATGCCAG...AGCTCCCTGACC/AGCTCCCTGACC...CACAG|GTC 1 1 30.991
72997483 GT-GC 0 1.000000099473604e-05 2443 rna-XM_016186153.1 13705579 5 481641 484083 Erinaceus europaeus 9365 AAG|GTCCGCGGCC...CAGCCCGCATCC/GCAGCCCGCATC...CCCGC|TCC 2 1 38.286
72997484 GT-AG 0 1.000000099473604e-05 1783 rna-XM_016186153.1 13705579 6 479814 481596 Erinaceus europaeus 9365 AAG|GTAAGCAGCC...GGTCTCTGAGCT/TCTGAGCTCACC...CCTAG|CGC 1 1 41.232
72997485 GT-AG 0 1.000000099473604e-05 117 rna-XM_016186153.1 13705579 7 479591 479707 Erinaceus europaeus 9365 GTG|GTGAGTGCCA...GAAGCCTATGCG/AAGAAGCCTATG...TGCAG|GCG 2 1 48.327
72997486 GT-AG 0 1.000000099473604e-05 110 rna-XM_016186153.1 13705579 8 479308 479417 Erinaceus europaeus 9365 CAG|GTGAGAGTTC...CTTTTCTTGTCC/TTAGATCTCACC...TTTAG|TGG 1 1 59.906
72997487 GT-AG 0 1.000000099473604e-05 154 rna-XM_016186153.1 13705579 9 479005 479158 Erinaceus europaeus 9365 TAC|GTAAGGAGAC...GGAGCCTCAGAC/CGGAGCCTCAGA...CACAG|AGT 0 1 69.88
72997488 GT-AG 0 1.1085572989448054e-05 816 rna-XM_016186153.1 13705579 10 478095 478910 Erinaceus europaeus 9365 AAG|GTATATGCAT...GGGCCTCTGAAT/GCGAGGTTGACC...TCCAG|GCC 1 1 76.171
72997489 GT-AG 0 1.000000099473604e-05 704 rna-XM_016186153.1 13705579 11 477297 478000 Erinaceus europaeus 9365 CGT|GTGAGTGACC...CCCACCTCAGTG/GCCCACCTCAGT...CCCAG|GCA 2 1 82.463
72997490 GT-AG 0 1.000000099473604e-05 286 rna-XM_016186153.1 13705579 12 476918 477203 Erinaceus europaeus 9365 CAG|GTGCGTAGAC...ACCATTCTGACA/ACCATTCTGACA...AACAG|TTC 2 1 88.688
72997491 GT-AG 0 1.000000099473604e-05 93 rna-XM_016186153.1 13705579 13 476746 476838 Erinaceus europaeus 9365 CAG|GTAGGCATGG...GCGACTTCAGCC/GGCGACTTCAGC...TACAG|GTC 0 1 93.976

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