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)

13 rows where transcript_id = 410592

✎ 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
2418315 GT-AG 0 5.152766324172556e-05 371 rna-XM_015911445.1 410592 1 1538556 1538926 Acropora digitifera 70779 CTG|GTAAGCTGAG...AGTTTCTTGTCT/CCAATTTTAAAA...CACAG|AAA 1 1 6.455
2418316 GT-AG 0 1.000000099473604e-05 205 rna-XM_015911445.1 410592 2 1538001 1538205 Acropora digitifera 70779 AAG|GTGAAAGAAA...TACTCCTAATTT/GTACTCCTAATT...TACAG|GGT 0 1 15.948
2418317 GT-AG 0 0.0120883172796521 355 rna-XM_015911445.1 410592 3 1537561 1537915 Acropora digitifera 70779 AAG|GTATACATTA...ATAACTTTTGTT/TTGGAATGCACC...TTCAG|TTG 1 1 18.253
2418318 GT-AG 0 0.0001486585506933 158 rna-XM_015911445.1 410592 4 1536314 1536471 Acropora digitifera 70779 AAG|GTATATGATG...TTACCCTAAAAT/CTCATTTTCATT...GACAG|TGA 1 1 47.79
2418319 GT-AG 0 0.065765367781279 128 rna-XM_015911445.1 410592 5 1536094 1536221 Acropora digitifera 70779 GAG|GTAACTTTTC...TTTATCTTGATA/TTTATCTTGATA...TTCAG|GAT 0 1 50.285
2418320 GT-AG 0 0.0135920996936879 346 rna-XM_015911445.1 410592 6 1535679 1536024 Acropora digitifera 70779 CAG|GTACCATAAT...TGTTTCTTGATT/TGTTTCTTGATT...CTCAG|GTT 0 1 52.156
2418321 GT-AG 0 1.000000099473604e-05 287 rna-XM_015911445.1 410592 7 1535284 1535570 Acropora digitifera 70779 AAG|GTAGTGTGAG...AGCCCATTGATG/TGATAACTCATT...TTCAG|AAA 0 1 55.085
2418322 GT-AG 0 1.000000099473604e-05 219 rna-XM_015911445.1 410592 8 1534924 1535142 Acropora digitifera 70779 GAG|GTTTGTGTGG...ATTTTGTTGAAA/CATTTATTCAAT...TTCAG|GGA 0 1 58.91
2418323 GT-AG 0 1.000000099473604e-05 90 rna-XM_015911445.1 410592 9 1534782 1534871 Acropora digitifera 70779 ATG|GTGAGTGCTT...TATGTTTTATTT/GTATGTTTTATT...TTTAG|ATG 1 1 60.32
2418324 GT-AG 0 1.000000099473604e-05 437 rna-XM_015911445.1 410592 10 1533596 1534032 Acropora digitifera 70779 AAG|GTCTGTGAAA...GATTTCTTAAAA/AATTCTTTTATT...TTCAG|AAC 0 1 80.635
2418325 GT-AG 0 7.182397083203397e-05 366 rna-XM_015911445.1 410592 11 1533167 1533532 Acropora digitifera 70779 ATT|GTGAGCTTCT...AATACTTTGAAC/GCTTTCTTCAAT...CACAG|GAT 0 1 82.343
2418326 GT-AG 0 1.000000099473604e-05 271 rna-XM_015911445.1 410592 12 1532811 1533081 Acropora digitifera 70779 CTG|GTAGGGACGT...GTTTCTTTGGTG/TTGGTGCTGACG...TCTAG|AAC 1 1 84.649
2418327 GT-AG 0 0.0006396446669463 385 rna-XM_015911445.1 410592 13 1531871 1532255 Acropora digitifera 70779 AAG|GTACCTGAAA...GTCTCCTTCTTT/AAGTTTCCCAAT...TGCAG|GGC 1 1 99.702

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