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)

14 rows where transcript_id = 5773994

✎ 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
29499198 GT-AG 0 0.0111767213179011 377 rna-XM_020356614.2 5773994 1 1777591 1777967 Cajanus cajan 3821 AAG|GTATGTTTCC...CCAATTTTGATC/CCAATTTTGATC...TGCAG|AAT 1 1 2.509
29499199 GT-AG 0 1.000000099473604e-05 722 rna-XM_020356614.2 5773994 2 1778506 1779227 Cajanus cajan 3821 CAG|GTCTGGTACT...TGTTTATTAACA/TGTTTATTAACA...ATCAG|GTA 2 1 21.792
29499200 GT-AG 0 0.0001326961070356 448 rna-XM_020356614.2 5773994 3 1779740 1780187 Cajanus cajan 3821 ATT|GTAAGTTCTT...TATCTTTCAACA/CTATCTTTCAAC...TACAG|CAA 1 1 40.143
29499201 GT-AG 0 0.0012415290911816 279 rna-XM_020356614.2 5773994 4 1780318 1780596 Cajanus cajan 3821 GAT|GTAACATCTT...CACTTTTTGCTA/ATATTACTAATT...GATAG|AAA 2 1 44.803
29499202 GT-AG 0 1.000000099473604e-05 86 rna-XM_020356614.2 5773994 5 1780669 1780754 Cajanus cajan 3821 ACT|GTAAGTCAAT...AATTCATTATTA/TTGTAATTCATT...ATTAG|GTG 2 1 47.384
29499203 GT-AG 0 0.0039128138804614 121 rna-XM_020356614.2 5773994 6 1780824 1780944 Cajanus cajan 3821 TGT|GTAAGTTATT...TTTTCCTTATTT/CTTATTTTCATT...TGCAG|GCA 2 1 49.857
29499204 GT-AG 0 0.0013313426101264 140 rna-XM_020356614.2 5773994 7 1781017 1781156 Cajanus cajan 3821 ATT|GTATGTAGCA...TACCCCTCAGAT/CAGATATTTACG...GACAG|GTT 2 1 52.437
29499205 GT-AG 0 4.571547734159901e-05 163 rna-XM_020356614.2 5773994 8 1781226 1781388 Cajanus cajan 3821 CAA|GTAAGTATCT...ATTATTTTATCT/AATTATTTTATC...TCCAG|CTT 2 1 54.91
29499206 GT-AG 0 1.000000099473604e-05 80 rna-XM_020356614.2 5773994 9 1781556 1781635 Cajanus cajan 3821 AGG|GTTAGTCCAC...TCTAAATTAACA/TCTAAATTAACA...TGCAG|GTG 1 1 60.896
29499207 GT-AG 0 0.0185959275671907 425 rna-XM_020356614.2 5773994 10 1781890 1782314 Cajanus cajan 3821 GAG|GTAGCGTTTC...GAAACCTTGATT/TTCCAGCTCATT...TGCAG|GTA 0 1 70.0
29499208 GT-AG 0 1.000000099473604e-05 81 rna-XM_020356614.2 5773994 11 1782442 1782522 Cajanus cajan 3821 ATG|GTCTAAATCC...TGTGTCATGATA/TAAATTCTAATG...GACAG|AAT 1 1 74.552
29499209 GT-AG 0 1.000000099473604e-05 88 rna-XM_020356614.2 5773994 12 1782589 1782676 Cajanus cajan 3821 AAG|GTTGATTCAT...TCCAACTTAACA/TCCAACTTAACA...TGCAG|GTC 1 1 76.918
29499210 GT-AG 0 0.0077323656341897 94 rna-XM_020356614.2 5773994 13 1782864 1782957 Cajanus cajan 3821 TGA|GTAAGCCATG...TTCTCCTTAACA/TTTCTCCTTAAC...AACAG|GTA 2 1 83.62
29499211 GT-AG 0 3.986710213797509 461 rna-XM_020356614.2 5773994 14 1783091 1783551 Cajanus cajan 3821 TGG|GTATCTTAGC...CATACTTTGATG/CATACTTTGATG...TGCAG|GCA 0 1 88.387

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