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)

11 rows where transcript_id = 22773523

✎ 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
123545740 GT-AG 0 1.000000099473604e-05 85 Myper.0001s0320.1.v2.1 22773523 1 2171152 2171236 Myagrum perfoliatum 359867 TTG|GTAAGATATT...GTTCTTGTAATG/ATGATGCTAAGA...TACAG|ACA 1 1 5.453
123545741 GT-AG 0 0.0005188835638871 86 Myper.0001s0320.1.v2.1 22773523 2 2170976 2171061 Myagrum perfoliatum 359867 ACT|GTAACAAAGA...TTGTCTTTTGTA/TTTGGTTTGAAA...GGCAG|CTA 1 1 8.211
123545742 GT-AG 0 1.000000099473604e-05 69 Myper.0001s0320.1.v2.1 22773523 3 2170806 2170874 Myagrum perfoliatum 359867 AAG|GTTTGAACAT...CTTTCGTTAAAG/CTTCTTTTTACG...CACAG|CAT 0 1 11.305
123545743 GT-AG 0 1.000000099473604e-05 82 Myper.0001s0320.1.v2.1 22773523 4 2170610 2170691 Myagrum perfoliatum 359867 GAG|GTTAGTTACA...TTTCTCATATTG/CACTTTCTCATA...ACCAG|AGA 0 1 14.798
123545744 GT-AG 0 1.000000099473604e-05 81 Myper.0001s0320.1.v2.1 22773523 5 2170447 2170527 Myagrum perfoliatum 359867 AGA|GTAAGTAACA...TGAAACTTAATG/TTGAAACTTAAT...TGCAG|CTC 1 1 17.31
123545745 GT-AG 0 0.0053684967807285 610 Myper.0001s0320.1.v2.1 22773523 6 2169769 2170378 Myagrum perfoliatum 359867 CTG|GTACTCTCAA...CTATTCTGAACA/GCTATTCTGAAC...TGCAG|ATA 0 1 19.393
123545746 GT-AG 0 0.0007405788003751 105 Myper.0001s0320.1.v2.1 22773523 7 2169601 2169705 Myagrum perfoliatum 359867 GTG|GTATGATACA...TGTTTTTTGAAT/CTTTCTCTGACA...TCAAG|TGC 0 1 21.324
123545747 GT-AG 0 1.000000099473604e-05 93 Myper.0001s0320.1.v2.1 22773523 8 2169383 2169475 Myagrum perfoliatum 359867 AAG|GTTCGATTCT...TTTTTTTTACAA/GTTTTTTTTACA...CGCAG|TAA 2 1 25.153
123545748 GT-AG 0 1.000000099473604e-05 616 Myper.0001s0320.1.v2.1 22773523 9 2168427 2169042 Myagrum perfoliatum 359867 AAA|GTGATTCCAC...TCCTTTTTAACG/TCCTTTTTAACG...TGCAG|ATG 0 1 35.57
123545749 GT-AG 0 1.000000099473604e-05 79 Myper.0001s0320.1.v2.1 22773523 10 2166872 2166950 Myagrum perfoliatum 359867 TCG|GTAAGTAGAA...CCTTTCTTAATG/TCCTTTCTTAAT...TGCAG|GTA 0 1 80.79
123545750 GT-AG 0 1.4911578064319912e-05 75 Myper.0001s0320.1.v2.1 22773523 11 2166519 2166593 Myagrum perfoliatum 359867 AAG|GTTTGTTTCT...TTATGCTAACCA/ATTATGCTAACC...ATCAG|GAT 2 1 89.308

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