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

✎ 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
119314806 GT-AG 0 1.3974573741529613e-05 1313 Misin01G451500.1.v7.1 22023904 1 137503998 137505310 Miscanthus sinensis 62337 AAC|GTGAGCTTTC...AATCTCTTTTCC/TAGTGTTTCAAT...GCCAG|GTT 0 1 7.555
119314807 GT-AG 0 0.0014215766411892 149 Misin01G451500.1.v7.1 22023904 2 137505538 137505686 Miscanthus sinensis 62337 AAA|GTTTGTCTGC...ATCCTCTTAACT/TTTCTTCTCAAC...TGTAG|ATC 2 1 12.897
119314808 GT-AG 0 2.155972295884805e-05 210 Misin01G451500.1.v7.1 22023904 3 137505761 137505970 Miscanthus sinensis 62337 AAG|GTCTTTCCTT...GTTGCTGTAATT/TTACAATTTACT...TCCAG|GTA 1 1 14.639
119314809 GT-AG 0 1.000000099473604e-05 82 Misin01G451500.1.v7.1 22023904 4 137506028 137506109 Miscanthus sinensis 62337 AAG|GTTCTAATCC...TTATGTTTAACT/TTATGTTTAACT...TTCAG|CTG 1 1 15.98
119314810 GT-AG 0 1.000000099473604e-05 477 Misin01G451500.1.v7.1 22023904 5 137506454 137506930 Miscanthus sinensis 62337 AAG|GTAATGAATC...TTTGTCTGATTT/ATTTGTCTGATT...TGCAG|GCC 0 1 24.076
119314811 GT-AG 0 1.000000099473604e-05 97 Misin01G451500.1.v7.1 22023904 6 137507000 137507096 Miscanthus sinensis 62337 AAT|GTGAGTAATC...ACTCACTTGACA/AGTAAACTCACT...TTCAG|ATT 0 1 25.7
119314812 GT-AG 0 0.000984265271389 199 Misin01G451500.1.v7.1 22023904 7 137507186 137507384 Miscanthus sinensis 62337 AAG|GTATTATCGT...AGCGCTTTAACA/TGTAATTTTACC...TCCAG|CAG 2 1 27.795
119314813 GT-AG 0 0.0008181464867318 611 Misin01G451500.1.v7.1 22023904 8 137509497 137510107 Miscanthus sinensis 62337 ACA|GTAAGTTCCA...TTGTTTTTGATG/TTGTTTTTGATG...TCCAG|ATA 2 1 77.501
119314814 GT-AG 0 0.0002679028246728 95 Misin01G451500.1.v7.1 22023904 9 137510186 137510280 Miscanthus sinensis 62337 TAA|GTACGTGGTT...TCTTTCTTGAAA/TCTTTCTTGAAA...TGCAG|GTC 2 1 79.336
119314815 GT-AG 0 0.1335170707940017 289 Misin01G451500.1.v7.1 22023904 10 137510393 137510681 Miscanthus sinensis 62337 GCA|GTATGTTTTC...TGAATGTTATCT/TCTTGATTAATT...TGCAG|AGG 0 1 81.972
119314816 GT-AG 0 1.1522864191640568e-05 113 Misin01G451500.1.v7.1 22023904 11 137510733 137510845 Miscanthus sinensis 62337 CAG|GTGTGTGATA...ATTTCCTTATTT/AATTTCCTTATT...CCCAG|ATT 0 1 83.173
119332286 GT-AG 0 1.000000099473604e-05 102 Misin01G451500.1.v7.1 22023904 12 137510917 137511018 Miscanthus sinensis 62337 CAT|GTGAGTTAAG...GCGTTATTGATC/GCGTTATTGATC...TGTAG|GTC   0 84.843

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