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)

14 rows where transcript_id = 38062821

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, length, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
210096496 GT-AG 0 0.0051873918641485 227 rna-XM_034833491.1 38062821 1 21068624 21068850 Vitis riparia 96939 CAG|GTATGTTTCT...ATTTTCTGATTT/AATTTTCTGATT...TGCAG|AGT 1 1 2.506
210096497 GT-AG 0 0.0002601623345507 102 rna-XM_034833491.1 38062821 2 21067987 21068088 Vitis riparia 96939 AAG|GTATGATTCC...GAGCCCTTTTCT/CCTTTTCTAAAG...CTCAG|GTA 2 1 21.661
210096498 GT-AG 0 1.000000099473604e-05 121 rna-XM_034833491.1 38062821 3 21067354 21067474 Vitis riparia 96939 ATG|GTAAGTCCAT...TGTGCTTTACCA/AATTTTATCATT...GGAAG|TGA 1 1 39.993
210096499 GT-AG 0 0.0069901275328996 155 rna-XM_034833491.1 38062821 4 21067066 21067220 Vitis riparia 96939 AAT|GTATGTCCTT...GGATTCTTCATT/GGATTCTTCATT...AACAG|TAC 2 1 44.755
210096500 GT-AG 0 2.2888926464061737e-05 91 rna-XM_034833491.1 38062821 5 21066903 21066993 Vitis riparia 96939 ATT|GTAAGCGCTA...CAGTTTTTCATT/CAGTTTTTCATT...CTTAG|GTG 2 1 47.333
210096501 GT-AG 0 0.0056966988855123 84 rna-XM_034833491.1 38062821 6 21066750 21066833 Vitis riparia 96939 TGT|GTAAGCTCTC...ATATGCTTATCT/TATATGCTTATC...TGCAG|GCA 2 1 49.803
210096502 GT-AG 0 0.0968353109362529 190 rna-XM_034833491.1 38062821 7 21066488 21066677 Vitis riparia 96939 ACT|GTATGCAGTA...CTTTTCCTGATA/CTTTTCCTGATA...GGCAG|GCA 2 1 52.381
210096503 GT-AG 0 1.000000099473604e-05 361 rna-XM_034833491.1 38062821 8 21066058 21066418 Vitis riparia 96939 CAA|GTGAGTATGC...AATTTTCTGACA/AATTTTCTGACA...TGCAG|CTA 2 1 54.851
210096504 GT-AG 0 1.000000099473604e-05 91 rna-XM_034833491.1 38062821 9 21065797 21065887 Vitis riparia 96939 AAG|GTAGTGTAGG...TCCTCCATATTT/ATTTTATGTATC...ATCAG|GAA 1 1 60.938
210096505 GT-AG 0 1.587134081815929e-05 277 rna-XM_034833491.1 38062821 10 21065266 21065542 Vitis riparia 96939 GAG|GTAGATTCGT...ATTATCATGATT/ATTATCATGATT...TGCAG|GTT 0 1 70.032
210096506 GT-AG 0 1.000000099473604e-05 108 rna-XM_034833491.1 38062821 11 21065031 21065138 Vitis riparia 96939 ATG|GTCTGATCTT...AACTGATTAACA/AAACAACTGATT...TGCAG|ATT 1 1 74.579
210096507 GT-AG 0 1.000000099473604e-05 87 rna-XM_034833491.1 38062821 12 21064878 21064964 Vitis riparia 96939 AAG|GTTTGATGTG...GCGTCCATATTG/ATTGTAATCACA...TGCAG|GTC 1 1 76.942
210096508 GT-AG 0 2.8524974514568644e-05 95 rna-XM_034833491.1 38062821 13 21064596 21064690 Vitis riparia 96939 TGA|GTAAGTCAGT...TTTTTTTTATTT/TTTTTTTTTATT...AATAG|GTA 2 1 83.638
210096509 GT-AG 0 0.0023658284222756 236 rna-XM_034833491.1 38062821 14 21064227 21064462 Vitis riparia 96939 TGG|GTATGCACCC...ATCCCCTTGGTG/AACTATTTCATC...TGCAG|GCA 0 1 88.4

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