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

✎ 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
119313772 GT-AG 0 1.000000099473604e-05 400 Misin01G043000.1.v7.1 22023828 1 6556043 6556442 Miscanthus sinensis 62337 AAG|GTCAGCACTC...TTACTTTTGATG/TTCTTGTTCATT...TTCAG|GTG 0 1 6.913
119313773 GT-AG 0 1.000000099473604e-05 141 Misin01G043000.1.v7.1 22023828 2 6556778 6556918 Miscanthus sinensis 62337 GGG|GTAGGTACTT...CTACTTTTACTA/CTTTTACTAATT...TGTAG|GTT 2 1 10.954
119313774 GT-AG 0 0.0001217525711571 173 Misin01G043000.1.v7.1 22023828 3 6557550 6557722 Miscanthus sinensis 62337 CAG|GTACGTTTAT...GTACCTATAACT/ACTAATTTGATT...CGCAG|GTT 0 1 18.567
119313775 GT-AG 0 1.000000099473604e-05 632 Misin01G043000.1.v7.1 22023828 4 6557828 6558459 Miscanthus sinensis 62337 GCT|GTGAGTTGAT...ACCATTTTGAAT/TCTTTCTTCAAA...TGCAG|GTT 0 1 19.834
119313776 GT-AG 0 2.988110719119725e-05 115 Misin01G043000.1.v7.1 22023828 5 6558653 6558767 Miscanthus sinensis 62337 ATA|GTGTGTACTC...TGTCCCTTTTTC/CCCTTTTTCATA...TGCAG|GTG 1 1 22.162
119313777 GT-AG 0 0.0026511556074315 103 Misin01G043000.1.v7.1 22023828 6 6560537 6560639 Miscanthus sinensis 62337 CTT|GTAAGCTTGA...TTTTTTTTTGCT/TTTTTGCTGATC...ATCAG|GTA 0 1 43.503
119313778 GT-AG 0 1.000000099473604e-05 176 Misin01G043000.1.v7.1 22023828 7 6560853 6561028 Miscanthus sinensis 62337 CGG|GTAGGTATTA...TTAATTTTGCCA/TTGCCACTTATA...TGTAG|GTA 0 1 46.073
119313779 GT-AG 0 1.000000099473604e-05 72 Misin01G043000.1.v7.1 22023828 8 6563297 6563368 Miscanthus sinensis 62337 CAG|GTTGGTGAAT...CTCACCTTATTT/GGTTACCTCACC...GACAG|GTA 0 1 73.435
119313780 GT-AG 0 0.0016257871670943 156 Misin01G043000.1.v7.1 22023828 9 6563482 6563637 Miscanthus sinensis 62337 AAG|GTAACTACTA...TGCTTTTTGATT/TGCTTTTTGATT...TTCAG|CAT 2 1 74.798
119313781 GT-AG 0 0.0002781621018108 178 Misin01G043000.1.v7.1 22023828 10 6564026 6564203 Miscanthus sinensis 62337 CAT|GTAAGTTGCT...TCTTTTTTAACT/TCTTTTTTAACT...TATAG|GTC 0 1 79.479
119313782 GT-AG 0 1.000000099473604e-05 1323 Misin01G043000.1.v7.1 22023828 11 6564522 6565844 Miscanthus sinensis 62337 AAG|GTAATAGACA...TGTTTCTTATCA/TTGTTTCTTATC...CGTAG|GTT 0 1 83.315
119313783 GT-AG 0 1.000000099473604e-05 248 Misin01G043000.1.v7.1 22023828 12 6566103 6566350 Miscanthus sinensis 62337 CAG|GTCAGTATCT...TTTTTTTTACAT/ATTTTTTTTACA...TGCAG|GGA 0 1 86.428

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