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

✎ 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
119314203 GT-AG 0 0.0001057750834645 1154 Misin01G048100.1.v7.1 22023856 3 7468214 7469367 Miscanthus sinensis 62337 CAG|GTCTTGTTTC...GTTATTTTAGCA/TTTGCATTCAGT...TTCAG|GAA 1 1 3.14
119314204 GT-AG 0 1.1421256945692068e-05 185 Misin01G048100.1.v7.1 22023856 4 7466582 7466766 Miscanthus sinensis 62337 TTG|GTAAATATCC...TTCTATTTAGCC/TATATTATTATT...TCCAG|GTA 2 1 34.045
119314205 GT-AG 0 1.0172373168292308e-05 134 Misin01G048100.1.v7.1 22023856 5 7464968 7465101 Miscanthus sinensis 62337 GAG|GTTCGCCTGT...TTGGATTTAATG/TCTGTTGTCACT...TCCAG|GTA 0 1 65.656
119314206 GT-AG 0 1.000000099473604e-05 108 Misin01G048100.1.v7.1 22023856 6 7464695 7464802 Miscanthus sinensis 62337 CAG|GTCAGACATT...ATTTCTTTAGAT/AGATGATTAACT...ACCAG|CTT 0 1 69.18
119314207 GT-AG 0 0.0185428506845459 90 Misin01G048100.1.v7.1 22023856 7 7464412 7464501 Miscanthus sinensis 62337 CTG|GTATGCACTT...AACACCTTGATT/TACTTTCTGATC...TGCAG|GTG 1 1 73.302
119314208 GT-AG 0 1.6860003282805086e-05 76 Misin01G048100.1.v7.1 22023856 8 7464224 7464299 Miscanthus sinensis 62337 GAA|GTATGACAAT...ATATGCTTATTC/CTTCCACTCATT...TGCAG|GGC 2 1 75.694
119314209 GT-AG 0 4.773185453700638e-05 95 Misin01G048100.1.v7.1 22023856 9 7463981 7464075 Miscanthus sinensis 62337 CAG|GTCTGTTGTT...ATATTCTAAACC/GATATTCTAAAC...TGCAG|GGG 0 1 78.855
119314210 GT-AG 0 1.000000099473604e-05 97 Misin01G048100.1.v7.1 22023856 10 7463686 7463782 Miscanthus sinensis 62337 CAG|GTGCTTACTG...TTTTCCTTTACA/AATTTTGTTACC...CTCAG|GTT 0 1 83.084
119314211 GT-AG 0 0.0003295775492128 100 Misin01G048100.1.v7.1 22023856 11 7463307 7463406 Miscanthus sinensis 62337 CAG|GTATGTGTCA...GTGCCCTTGGCT/GCTGGATTTACT...TGCAG|TAT 0 1 89.043
119314212 GT-AG 0 0.0004597376778577 96 Misin01G048100.1.v7.1 22023856 12 7463049 7463144 Miscanthus sinensis 62337 AAG|GTAACCACAG...ACTACTTTTGCT/CTCTAGGTAACC...TACAG|GTG 0 1 92.503
119314213 GT-AG 0 0.0001213205717033 342 Misin01G048100.1.v7.1 22023856 13 7462488 7462829 Miscanthus sinensis 62337 CAG|GTAATTTGCC...TCTCTCTTAACA/ATCCTGTTCACA...CTCAG|GGC 0 1 97.181
119332265 GT-AG 0 1.000000099473604e-05 554 Misin01G048100.1.v7.1 22023856 1 7470726 7471279 Miscanthus sinensis 62337 TCG|GTGAGCGCGC...TCTACTTTAACG/TATTTGGTTACT...TGCAG|GAA   0 1.025
119332266 GT-AG 0 0.0085251698903286 1252 Misin01G048100.1.v7.1 22023856 2 7469415 7470666 Miscanthus sinensis 62337 CTG|GTATATCTTT...ATTTACTTGATT/ATTTACTTGATT...TACAG|GGG   0 2.285

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