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

✎ 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
123545041 GT-AG 0 1.000000099473604e-05 622 Myper.0001s0608.1.v2.1 22773469 1 4979299 4979920 Myagrum perfoliatum 359867 AAG|GTTAGCATCT...AATTTTTTAAAA/AATTTTTTAAAA...TTCAG|GTT 0 1 6.126
123545042 GT-AG 0 6.055469647727755e-05 92 Myper.0001s0608.1.v2.1 22773469 2 4979152 4979243 Myagrum perfoliatum 359867 TGC|GTAAGCCCAA...TTAACCTAACTT/CTTAACCTAACT...TGCAG|AGG 1 1 7.584
123545043 GT-AG 0 1.000000099473604e-05 90 Myper.0001s0608.1.v2.1 22773469 3 4978886 4978975 Myagrum perfoliatum 359867 AAG|GTTTTGATAA...TCTTCTTTTTCA/TTCTTTTTCAAT...CTCAG|GTT 0 1 12.251
123545044 GT-AG 0 0.0003400535951928 84 Myper.0001s0608.1.v2.1 22773469 4 4978580 4978663 Myagrum perfoliatum 359867 ACA|GTAAGTTCTC...GCATTTTTGATG/GCATTTTTGATG...TTTAG|GTT 0 1 18.138
123545045 GT-AG 0 1.000000099473604e-05 75 Myper.0001s0608.1.v2.1 22773469 5 4978266 4978340 Myagrum perfoliatum 359867 AAT|GTGAGTATAA...TAATTCTTACAC/ATAATTCTTACA...TTCAG|GTC 2 1 24.476
123545046 GT-AG 0 0.0057593959274771 80 Myper.0001s0608.1.v2.1 22773469 6 4977660 4977739 Myagrum perfoliatum 359867 CAG|GTATAGTTGA...AATTTCTTAATT/AATTTCTTAATT...TTCAG|GGG 0 1 38.425
123545047 GT-AG 0 1.000000099473604e-05 77 Myper.0001s0608.1.v2.1 22773469 7 4977309 4977385 Myagrum perfoliatum 359867 AAG|GTTAGGGTTT...TTTTTTTTATCT/GTTTTTTTTATC...ATCAG|GAA 1 1 45.691
123545048 GT-AG 0 1.000000099473604e-05 113 Myper.0001s0608.1.v2.1 22773469 8 4976553 4976665 Myagrum perfoliatum 359867 TAG|GTAATATAAC...GCAATTTTTATT/GCAATTTTTATT...TCCAG|TGG 2 1 62.742
123545049 GT-AG 0 1.000000099473604e-05 79 Myper.0001s0608.1.v2.1 22773469 9 4976245 4976323 Myagrum perfoliatum 359867 AAA|GTCAGTAGTT...TTTGTTTTAAGT/TTTGTTTTAAGT...CTCAG|GAA 0 1 68.815
123545050 GT-AG 0 1.9659950957652887e-05 86 Myper.0001s0608.1.v2.1 22773469 10 4975892 4975977 Myagrum perfoliatum 359867 CAG|GTATAAAAGG...GTGGTTTTAGCG/TATGGTTTGATT...TTCAG|GTT 0 1 75.895
123545051 GT-AG 0 1.000000099473604e-05 103 Myper.0001s0608.1.v2.1 22773469 11 4975525 4975627 Myagrum perfoliatum 359867 CAG|GTAGGTAACA...ACGGTTTTAACT/ACGGTTTTAACT...TTCAG|ACC 0 1 82.896

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