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

✎ 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
2419155 GT-AG 0 4.960706402923077e-05 1197 rna-XM_015897381.1 410668 1 1606657 1607853 Acropora digitifera 70779 GAG|GTAAACAGTT...TACTCCTTTTTT/GGGGGGCTAACT...TCCAG|ATA 0 1 7.444
2419156 GT-AG 0 1.000000099473604e-05 2315 rna-XM_015897381.1 410668 2 1607914 1610228 Acropora digitifera 70779 ATG|GTAAGTGGAA...ATGCCCTTGGCC/TTGTTTGTAACT...TTCAG|GTT 0 1 12.407
2419157 GT-AG 0 1.000000099473604e-05 516 rna-XM_015897381.1 410668 3 1610287 1610802 Acropora digitifera 70779 ATG|GTTAGTTCAT...TATTTCATAACT/TTTTTATTTATT...ACCAG|AAC 1 1 17.204
2419158 GT-AG 0 1.000000099473604e-05 384 rna-XM_015897381.1 410668 4 1610921 1611304 Acropora digitifera 70779 AAG|GTGAGGAATC...GATTTATTGACA/GATTTATTGACA...TGCAG|GGA 2 1 26.964
2419159 GT-AG 0 0.0007004913712641 743 rna-XM_015897381.1 410668 5 1611348 1612090 Acropora digitifera 70779 GGG|GTAACTACTG...TTGTGTTTATTT/TTTGTGTTTATT...TTTAG|ATC 0 1 30.521
2419160 GT-AG 0 1.000000099473604e-05 98 rna-XM_015897381.1 410668 6 1612196 1612293 Acropora digitifera 70779 CTT|GTGAGTGTTC...ACGTTGTTAATC/ACGTTGTTAATC...GTTAG|GCA 0 1 39.206
2419161 GT-AG 0 8.694063469386317e-05 406 rna-XM_015897381.1 410668 7 1612423 1612828 Acropora digitifera 70779 AAT|GTAAGTTGTT...TTCTCTTCAGCT/TTTCTCTTCAGC...TTCAG|ACT 0 1 49.876
2419162 GT-AG 0 0.0253253193880056 154 rna-XM_015897381.1 410668 8 1612966 1613119 Acropora digitifera 70779 TTT|GTCTTCATTG...CTTTTATTGATG/CTTTTATTGATG...TATAG|GGT 2 1 61.208
2419163 GT-AG 0 1.000000099473604e-05 431 rna-XM_015897381.1 410668 9 1613190 1613620 Acropora digitifera 70779 CTG|GTTTGGCTGA...ACTTTTTTTATT/ACTTTTTTTATT...GTTAG|GTT 0 1 66.998
2419164 GT-AG 0 1.000000099473604e-05 152 rna-XM_015897381.1 410668 10 1613731 1613882 Acropora digitifera 70779 AAA|GTAAGTGAAA...TATTTTTTATTC/TTATTTTTTATT...AATAG|TAT 2 1 76.096
2419165 GT-AG 0 1.000000099473604e-05 271 rna-XM_015897381.1 410668 11 1613986 1614256 Acropora digitifera 70779 CTG|GTAATAAAAC...TTTATTTTACTG/ATTTATTTTACT...TTCAG|GGT 0 1 84.615
2419166 GT-AG 0 1.000000099473604e-05 2061 rna-XM_015897381.1 410668 12 1614398 1616458 Acropora digitifera 70779 GGG|GTAAGTGAAC...TCGTTTTTAAAT/TCGTTTTTAAAT...TTCAG|GGC 0 1 96.278

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