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

✎ 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
67623086 GT-AG 0 1.000000099473604e-05 1079 rna-XM_009899550.1 12720324 1 254095 255173 Dryobates pubescens 118200 GAG|GTGAGCCGAG...AGAGCTCTGCTG/TGCCTGCTGAGG...TCTAG|GTG 0 1 5.42
67623087 AG-GC 0 6.556125528611273e-05 79 rna-XM_009899550.1 12720324 2 255274 255352 Dryobates pubescens 118200 AGG|AGGGGAGGAG...TGTGCAGTGACA/TGTGCAGTGACA...GTTGC|AGT 1 1 9.937
67623088 GT-AG 0 1.000000099473604e-05 586 rna-XM_009899550.1 12720324 3 255433 256018 Dryobates pubescens 118200 AAG|GTAGGAAGGG...CTGCCCTGAGCT/TCTGCCCTGAGC...CCCAG|GCC 0 1 13.55
67623089 GT-AG 0 1.000000099473604e-05 867 rna-XM_009899550.1 12720324 4 256179 257045 Dryobates pubescens 118200 AAG|GTGCTGAGAG...CCCCCTGTGACC/CCCCCTGTGACC...CGCAG|AGA 1 1 20.777
67623090 GT-AG 0 1.000000099473604e-05 540 rna-XM_009899550.1 12720324 5 257193 257732 Dryobates pubescens 118200 TTG|GTAAGAGACC...CTCTGCTTGTCT/TTGGGAATCACC...CTCAG|GCC 1 1 27.416
67623091 GT-AG 0 1.686243222955746e-05 549 rna-XM_009899550.1 12720324 6 257925 258473 Dryobates pubescens 118200 TGA|GTAGGTGGCT...TCTCTCTTCTCT/GCTCTCCTCAGG...TCCAG|ATG 1 1 36.089
67623092 GT-AG 0 1.565781686337698e-05 683 rna-XM_009899550.1 12720324 7 258638 259320 Dryobates pubescens 118200 GAG|GTAGGCCTCC...CTCTCCCTGCTC/GGCTGTGCCACT...CTCAG|GTG 0 1 43.496
67623093 GT-AG 0 1.000000099473604e-05 915 rna-XM_009899550.1 12720324 8 259504 260418 Dryobates pubescens 118200 AAG|GTGCTGCAGC...ATCCTCTTCTCT/AGGAGCCCCAAA...CTTAG|ATC 0 1 51.762
67623094 GT-AG 0 1.000000099473604e-05 158 rna-XM_009899550.1 12720324 10 261666 261823 Dryobates pubescens 118200 CAG|GTGAGTGGGA...TTCTCCTCTCCT/CCAGCTCTAAGG...GGCAG|GGA 2 1 65.808
67623095 GT-AG 0 1.000000099473604e-05 807 rna-XM_009899550.1 12720324 11 261994 262800 Dryobates pubescens 118200 TTG|GTGAGAGCAG...GTGCTCCTCTCT/GAGTGGCTGAGT...TGCAG|GCA 1 1 73.487
67623096 GT-AG 0 1.000000099473604e-05 773 rna-XM_009899550.1 12720324 12 262932 263704 Dryobates pubescens 118200 CAG|GTAAGGAGGG...TCCTCCCCAGCT/CTCCTCCCCAGC...TGCAG|GTC 0 1 79.404
67623097 GT-AG 0 1.000000099473604e-05 117 rna-XM_009899550.1 12720324 13 263837 263953 Dryobates pubescens 118200 GAG|GTGAGCACAG...CTGCCCTTGCTC/GGACAGCCAAGA...TCCAG|GAC 0 1 85.366
67623098 GT-AG 0 1.000000099473604e-05 724 rna-XM_009899550.1 12720324 14 264157 264880 Dryobates pubescens 118200 TCA|GTAGGTGTCC...CACTGCTGAGCA/CCACTGCTGAGC...TGCAG|GTG 2 1 94.535

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