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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, length, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
3822562 GT-AG 0 4.5925099409110384e-05 610 rna-gnl|I4U23|002545-T1 720801 1 8042295 8042904 Adineta vaga 104782 TCA|GTAAGTCGAA...GTACTTTTAATA/GTACTTTTAATA...ATTAG|TCA 0 1 10.475
3822563 GT-AG 0 1.000000099473604e-05 60 rna-gnl|I4U23|002545-T1 720801 2 8041990 8042049 Adineta vaga 104782 AAG|GTCAGTTCAT...ATTTATTTAGCA/TGATCATTTATT...TTTAG|TAC 2 1 15.15
3822564 GT-AG 0 1.000000099473604e-05 88 rna-gnl|I4U23|002545-T1 720801 3 8041185 8041272 Adineta vaga 104782 CAA|GTGAGTTAAA...TTGCCGTTGAAT/TGAATATTCAAA...TCTAG|GGA 2 1 28.83
3822565 GT-AG 0 1.005811183365323e-05 471 rna-gnl|I4U23|002545-T1 720801 4 8040631 8041101 Adineta vaga 104782 TGA|GTGCGTTAAA...AAACACTTGAAT/AAACACTTGAAT...TTTAG|ATT 1 1 30.414
3822566 GT-AG 0 1.000000099473604e-05 107 rna-gnl|I4U23|002545-T1 720801 5 8040387 8040493 Adineta vaga 104782 ATC|GTTATTGACT...CTCTCTTTGTTA/TTTGATATAACT...TTAAG|ATA 0 1 33.028
3822567 GT-AG 0 0.74994930915121 927 rna-gnl|I4U23|002545-T1 720801 6 8039425 8040351 Adineta vaga 104782 GAT|GTATCACTTA...CGTGCCGTGACA/TTTTCTTTCAGG...TCTAG|TTC 2 1 33.696
3822568 GT-AG 0 1.000000099473604e-05 435 rna-gnl|I4U23|002545-T1 720801 7 8038449 8038883 Adineta vaga 104782 CAA|GTAAGAAAAG...AATGTTTTATAT/GAATGTTTTATA...TTTAG|GAA 0 1 44.018
3822569 GT-AG 0 1.000000099473604e-05 141 rna-gnl|I4U23|002545-T1 720801 8 8037638 8037778 Adineta vaga 104782 TAA|GTAGTGCACT...TTCTTCTAGATG/CCACGATTTATT...AATAG|GAA 1 1 56.802
3822570 GT-AG 0 0.0921573961277405 203 rna-gnl|I4U23|002545-T1 720801 9 8036888 8037090 Adineta vaga 104782 TGT|GTATTTTGAT...CTTTCCTTTCTT/AATGATTTAATA...TTTAG|AAT 2 1 67.239
3822571 GT-AG 0 1.000000099473604e-05 53 rna-gnl|I4U23|002545-T1 720801 10 8036695 8036747 Adineta vaga 104782 ATG|GTAAATAGAA...CTTTTCTAATCA/TCTTTTCTAATC...TTCAG|GTG 1 1 69.91
3822572 GT-AG 0 1.000000099473604e-05 60 rna-gnl|I4U23|002545-T1 720801 11 8036356 8036415 Adineta vaga 104782 AAG|GTAAGAGAAT...ACCATATTAATA/ACCATATTAATA...TTAAG|AGG 1 1 75.234
3822573 GT-AG 0 1.000000099473604e-05 58 rna-gnl|I4U23|002545-T1 720801 12 8035857 8035914 Adineta vaga 104782 ATG|GTAAAGACTA...CATTCCATAATC/TCATTTGTTATC...TTCAG|TTC 1 1 83.648
3822574 GT-AG 0 1.000000099473604e-05 70 rna-gnl|I4U23|002545-T1 720801 13 8035316 8035385 Adineta vaga 104782 AAG|GTAAAGAAGA...ATTGTATTGAAT/ATTGTATTGAAT...TCTAG|ATT 1 1 92.635

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