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)

10 rows where transcript_id = 23959269

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: is_minor, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
130299750 GT-AG 0 1.000000099473604e-05 24469 rna-gnl|WGS:WBNA|NOTNIG_R04445_mrna 23959269 1 1741619 1766087 Nothocercus nigrocapillus 1977171 CAG|GTGGGTAAGT...CTTCTTTTATTT/CCTTCTTTTATT...TCCAG|TCA 2 1 11.981
130299751 GT-AG 0 1.000000099473604e-05 897 rna-gnl|WGS:WBNA|NOTNIG_R04445_mrna 23959269 2 1740676 1741572 Nothocercus nigrocapillus 1977171 CAG|GTTAGAAGTT...TTTTTCTTCTTT/CTTGGTTTGATT...TCTAG|AAA 0 1 17.438
130299752 GT-AG 0 3.948145979066879e-05 3716 rna-gnl|WGS:WBNA|NOTNIG_R04445_mrna 23959269 3 1736895 1740610 Nothocercus nigrocapillus 1977171 AAG|GTATGACCTC...AATTACTTAGCT/GAATTACTTAGC...TCTAG|GTA 2 1 25.148
130299753 GT-AG 0 7.682382911972178e-05 3363 rna-gnl|WGS:WBNA|NOTNIG_R04445_mrna 23959269 4 1733471 1736833 Nothocercus nigrocapillus 1977171 GAG|GTAATCAGCT...TTTTTTTTATTT/TTTTTTTTTATT...GTAAG|GTG 0 1 32.384
130299754 GT-AG 0 1.000000099473604e-05 17238 rna-gnl|WGS:WBNA|NOTNIG_R04445_mrna 23959269 5 1716160 1733397 Nothocercus nigrocapillus 1977171 CGC|GTAAGTGACT...TGTTCTGTATTT/ACTAAGCTAACA...ACTAG|CCT 1 1 41.044
130299755 GT-AG 0 0.0004260955707182 362 rna-gnl|WGS:WBNA|NOTNIG_R04445_mrna 23959269 6 1715718 1716079 Nothocercus nigrocapillus 1977171 CAG|GTATTAATCA...ACTTTCTTATTT/TACTTTCTTATT...TGCAG|TGT 0 1 50.534
130299756 GT-AG 1 99.68419078030148 2919 rna-gnl|WGS:WBNA|NOTNIG_R04445_mrna 23959269 7 1712749 1715667 Nothocercus nigrocapillus 1977171 ACA|GTATCCTTTC...TTAACCTTAACT/CAATTCTTAACC...GTCAG|TGC 2 1 56.465
130299757 GT-AG 0 1.000000099473604e-05 4627 rna-gnl|WGS:WBNA|NOTNIG_R04445_mrna 23959269 8 1708054 1712680 Nothocercus nigrocapillus 1977171 TAG|GTAAGAATCT...TTGTACTTAATA/TTTGTACTTAAT...TATAG|CTG 1 1 64.531
130299758 GT-AG 0 2.6776743464848444e-05 2781 rna-gnl|WGS:WBNA|NOTNIG_R04445_mrna 23959269 9 1705207 1707987 Nothocercus nigrocapillus 1977171 TAG|GTAAGTCTTT...TCTCTCTTATTT/TTGAGTTTGATT...CCTAG|CTG 1 1 72.361
130299759 GT-AG 0 0.0054536101905482 57873 rna-gnl|WGS:WBNA|NOTNIG_R04445_mrna 23959269 10 1647228 1705100 Nothocercus nigrocapillus 1977171 TAG|GTACTTTTCT...TTCTCTTTGCCT/TGCAGGGTCACA...CGCAG|ATT 2 1 84.935

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