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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
119314309 GT-AG 0 0.0005206957364523 1007 Misin01G430600.1.v7.1 22023861 1 133293229 133294235 Miscanthus sinensis 62337 GAG|GTAAGCTCCC...GTCCTCTTAATA/AATATTTTGAAA...GCCAG|TGG 0 1 3.659
119314310 GT-AG 0 7.624001133128602e-05 626 Misin01G430600.1.v7.1 22023861 2 133294406 133295031 Miscanthus sinensis 62337 ATG|GTAAACCACT...CCATCCTTATTG/TTATTGCTTATA...CCTAG|GGA 2 1 7.498
119314311 GT-AG 0 1.000000099473604e-05 7048 Misin01G430600.1.v7.1 22023861 3 133295159 133302206 Miscanthus sinensis 62337 GAG|GTAAGGATGA...TGTACATTGACT/CATTGACTTACA...GCCAG|CTG 0 1 10.366
119314312 GT-AG 0 0.0001770529763272 88 Misin01G430600.1.v7.1 22023861 4 133302470 133302557 Miscanthus sinensis 62337 TAG|GTAACTACTG...ACCTGCTTATTC/TATGTGCTCACC...TTCAG|GTG 2 1 16.305
119314313 GT-AG 0 1.000000099473604e-05 80 Misin01G430600.1.v7.1 22023861 5 133304188 133304267 Miscanthus sinensis 62337 GAG|GTAGGTGTTA...CACATTTTAATT/TTTTTTTTCACC...AACAG|GTG 0 1 53.117
119314314 GT-AG 0 1.000000099473604e-05 127 Misin01G430600.1.v7.1 22023861 6 133304481 133304607 Miscanthus sinensis 62337 GAG|GTAATACAGT...GAATTCTCAACT/TTTTATATGATT...TGCAG|TAC 0 1 57.927
119314315 GT-AG 0 1.000000099473604e-05 365 Misin01G430600.1.v7.1 22023861 7 133304856 133305220 Miscanthus sinensis 62337 AAG|GTTAGTGACT...TTTTTTTTGTTG/GATATATTTATA...TTTAG|ATT 2 1 63.528
119314316 GT-AG 0 3.676054949524475e-05 684 Misin01G430600.1.v7.1 22023861 8 133305633 133306316 Miscanthus sinensis 62337 GAG|GTGTGCCATA...CTATTTTTACTT/TCTATTTTTACT...ATAAG|GTT 0 1 72.832
119314317 GT-AG 0 0.00127425645445 97 Misin01G430600.1.v7.1 22023861 9 133306523 133306619 Miscanthus sinensis 62337 GAG|GTCTCTGGAT...TATTCCTCATTT/ATATTCCTCATT...TCCAG|GTA 2 1 77.484
119314318 GT-AG 0 0.0652155322510646 150 Misin01G430600.1.v7.1 22023861 10 133306966 133307115 Miscanthus sinensis 62337 GAG|GTATGTTTTT...TTTCTCTTAAAA/ATTTCTCTTAAA...GTTAG|GTT 0 1 85.298
119314319 GT-AG 0 1.000000099473604e-05 98 Misin01G430600.1.v7.1 22023861 11 133307335 133307432 Miscanthus sinensis 62337 TTG|GTAATGTGTA...GTACTCATATTA/GTGGTACTCATA...TACAG|GAT 0 1 90.244
119314320 GT-AG 0 1.000000099473604e-05 223 Misin01G430600.1.v7.1 22023861 12 133307762 133307984 Miscanthus sinensis 62337 CAG|GTAAGTCTAA...ATTCTCTTACAT/CATTCTCTTACA...TTCAG|GTA 2 1 97.674

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