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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, length, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
123544854 GT-AG 0 1.000000099473604e-05 194 Myper.0001s0719.1.v2.1 22773456 1 5428859 5429052 Myagrum perfoliatum 359867 CAG|GTTAGACCCG...TAACCTTTTGCT/GTACTGCTAACC...CTCAG|AAG 0 1 40.481
123544855 GT-AG 0 1.000000099473604e-05 102 Myper.0001s0719.1.v2.1 22773456 2 5429371 5429472 Myagrum perfoliatum 359867 AAG|GTGAGCCGTT...ATCTTCTTATCC/TGTATCTTCACT...AATAG|GAA 0 1 48.213
123544856 GT-AG 0 1.000000099473604e-05 106 Myper.0001s0719.1.v2.1 22773456 3 5429602 5429707 Myagrum perfoliatum 359867 CAA|GTGAGTATCC...TACTTATTAACT/TGTTTACTTATT...TCCAG|GTA 0 1 51.349
123544857 GT-AG 0 0.0713082755560645 85 Myper.0001s0719.1.v2.1 22773456 4 5429831 5429915 Myagrum perfoliatum 359867 CAG|GTTCCTTTCG...GGTGCCTTAAAT/GTTTGACTGACT...CGCAG|TTC 0 1 54.34
123544858 GT-AG 0 1.000000099473604e-05 300 Myper.0001s0719.1.v2.1 22773456 5 5430087 5430386 Myagrum perfoliatum 359867 CAG|GTAATGCATA...GTTTCCTTGAAT/AGTTTGCTAATA...TGCAG|TTT 0 1 58.497
123544859 GT-AG 0 4.3129290299780816e-05 77 Myper.0001s0719.1.v2.1 22773456 6 5430513 5430589 Myagrum perfoliatum 359867 GAG|GTAGTTCTCT...CTTATCATGACA/TTCTACTTCATG...ATCAG|ATA 0 1 61.561
123544860 GT-AG 0 1.000000099473604e-05 192 Myper.0001s0719.1.v2.1 22773456 7 5430725 5430916 Myagrum perfoliatum 359867 CAG|GTGATTTTTT...GATATTTTATTT/CTTTTTGTTACT...CGCAG|AGA 0 1 64.843
123544861 GT-AG 0 1.000000099473604e-05 83 Myper.0001s0719.1.v2.1 22773456 8 5431045 5431127 Myagrum perfoliatum 359867 GAA|GTAAGAAGAT...TAGACTGTATAT/GGCTACCTGATG...ATCAG|GTA 2 1 67.955
123544862 GT-AG 0 1.000000099473604e-05 134 Myper.0001s0719.1.v2.1 22773456 9 5431237 5431370 Myagrum perfoliatum 359867 CAG|GTACAGCCCA...TTTTCTCTAACG/TTTTCTCTAACG...TTCAG|GGC 0 1 70.605
123544863 GT-AG 0 1.000000099473604e-05 77 Myper.0001s0719.1.v2.1 22773456 10 5431692 5431768 Myagrum perfoliatum 359867 CAG|GTCTATACCA...AATTTCTAAATG/GAATTTCTAAAT...TCTAG|GAT 0 1 78.41
123544864 GT-AG 0 0.007040781823315 78 Myper.0001s0719.1.v2.1 22773456 11 5431919 5431996 Myagrum perfoliatum 359867 GAG|GTACACTGCT...TTCTCCTGAACT/CTTATTCTAATT...TTAAG|GCG 0 1 82.057
123544865 GT-AG 0 1.000000099473604e-05 283 Myper.0001s0719.1.v2.1 22773456 12 5432284 5432566 Myagrum perfoliatum 359867 AAG|GTAAACAAAT...ATCATTTTACTC/AATCATTTTACT...GGCAG|ATA 2 1 89.035

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