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

✎ 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
123544842 GT-AG 0 1.000000099473604e-05 172 Myper.0001s0717.1.v2.1 22773455 1 5421122 5421293 Myagrum perfoliatum 359867 CAG|GTTAGTCCTG...ACTGATTTAACT/TCAATACTGATT...CAAAG|GGA 0 1 39.783
123544843 GT-AG 0 1.000000099473604e-05 93 Myper.0001s0717.1.v2.1 22773455 2 5421615 5421707 Myagrum perfoliatum 359867 AAG|GTGAGTAGTC...GTTTTCTCATCT/AGTTTTCTCATC...AACAG|GAT 0 1 47.509
123544844 GT-AG 0 1.000000099473604e-05 110 Myper.0001s0717.1.v2.1 22773455 3 5421837 5421946 Myagrum perfoliatum 359867 CAA|GTGAGTATTT...TTTTGCTTATTA/TTTTTGCTTATT...CCCAG|GCA 0 1 50.614
123544845 GT-AG 0 0.0043755314670792 86 Myper.0001s0717.1.v2.1 22773455 4 5422070 5422155 Myagrum perfoliatum 359867 CAG|GTTCCTTTCC...GATGTCGTAAAT/GTTAGACTGACT...TGCAG|TTC 0 1 53.574
123544846 GT-AG 0 1.000000099473604e-05 442 Myper.0001s0717.1.v2.1 22773455 5 5422327 5422768 Myagrum perfoliatum 359867 CAG|GTAATACAGT...GTTTCTTTGAAT/AGTTTGCTAATA...TGCAG|TTT 0 1 57.69
123544847 GT-AG 0 1.000000099473604e-05 78 Myper.0001s0717.1.v2.1 22773455 6 5422895 5422972 Myagrum perfoliatum 359867 GAG|GTGGTTCTCT...AGACTTTTATCA/TTTAACTTCATG...ATCAG|ATA 0 1 60.722
123544848 GT-AG 0 0.0153036998570004 141 Myper.0001s0717.1.v2.1 22773455 7 5423108 5423248 Myagrum perfoliatum 359867 CAG|GTAATCTTTT...TTTTCCTTATTT/ATTTTCCTTATT...GGTAG|AGA 0 1 63.971
123544849 GT-AG 0 1.000000099473604e-05 82 Myper.0001s0717.1.v2.1 22773455 8 5423377 5423458 Myagrum perfoliatum 359867 GAA|GTAAGAAGAT...GGCTTCCTGATG/GGCTTCCTGATG...ATCAG|GTA 2 1 67.052
123544850 GT-AG 0 1.000000099473604e-05 207 Myper.0001s0717.1.v2.1 22773455 9 5423568 5423774 Myagrum perfoliatum 359867 CAG|GTACAGCCCA...TCCAACTTAACT/TCTCTACTGATC...TCCAG|GGC 0 1 69.675
123544851 GT-AG 0 1.000000099473604e-05 214 Myper.0001s0717.1.v2.1 22773455 10 5424096 5424309 Myagrum perfoliatum 359867 CAG|GTCAATGTCA...CATTGCTTAGTG/TTAGTGCTTATA...GATAG|GAT 0 1 77.401
123544852 GT-AG 0 0.0042587984703878 73 Myper.0001s0717.1.v2.1 22773455 11 5424454 5424526 Myagrum perfoliatum 359867 GAG|GTACACCTTG...TTGTTCTAAATT/CTTGTTCTAAAT...TGAAG|GCA 0 1 80.866
123544853 GT-AG 0 4.99359550823822e-05 295 Myper.0001s0717.1.v2.1 22773455 12 5424829 5425123 Myagrum perfoliatum 359867 AAG|GTAAACATAC...AATGCTTTAGAG/AGTAATTTTATA...GGCAG|ATA 2 1 88.135

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