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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
92592776 GT-AG 0 1.000000099473604e-05 315 rna-XM_020571649.1 17327622 1 1454532 1454846 Heterostelium album 2086695 GAG|GTAATATAGT...TTATTTTTAAAT/TCTATTTTTATT...ATTAG|TAG 2 1 0.286
92592777 GT-AG 0 1.000000099473604e-05 71 rna-XM_020571649.1 17327622 2 1454345 1454415 Heterostelium album 2086695 AAG|GTAATATATT...AAAATATTAATT/AAAATATTAATT...TTTAG|ATG 1 1 2.238
92592778 GT-AG 0 0.5001014480993058 64 rna-XM_020571649.1 17327622 3 1454136 1454199 Heterostelium album 2086695 ACC|GTATGTTTTC...TTATTATTAATA/TTATTATTAATA...TATAG|ATG 2 1 4.678
92592779 GT-AG 0 1.000000099473604e-05 84 rna-XM_020571649.1 17327622 4 1453348 1453431 Heterostelium album 2086695 ATG|GTAAGTAACA...TTATTTTTATTA/ATTATTTTTATT...TTTAG|ATT 1 1 16.524
92592780 GT-AG 0 0.0172594196984916 538 rna-XM_020571649.1 17327622 5 1452762 1453299 Heterostelium album 2086695 TTG|GTATTTTGTT...TCATTCTAATCA/TTCATTCTAATC...AAAAG|ATG 1 1 17.331
92592781 GT-AG 0 0.0355204637621085 183 rna-XM_020571649.1 17327622 6 1449823 1450005 Heterostelium album 2086695 GAA|GTATATTCGC...TACTCTTGGATG/GTTGTATTGAAT...GCAAG|AAA 0 1 63.705
92592782 GT-AG 0 0.0006807356615013 207 rna-XM_020571649.1 17327622 7 1448817 1449023 Heterostelium album 2086695 GAC|GTTTGTTCAT...TCTTCCTTGGCA/CTCTTGTTCATC...TTTAG|AGG 1 1 77.15
92592783 GT-AG 0 2.0133215518115627e-05 297 rna-XM_020571649.1 17327622 8 1448362 1448658 Heterostelium album 2086695 GAA|GTTAACATTC...ATCACTTGGATT/TTAGATCTCATC...TACAG|TCA 0 1 79.808
92592784 GC-AG 0 1.000000099473604e-05 352 rna-XM_020571649.1 17327622 9 1447889 1448240 Heterostelium album 2086695 TTG|GCTATTTTTT...GATGGCATACCA/AGCTACTTCAAG...TAAAG|TGT 1 1 81.844
92592785 GT-AG 0 0.0225630964846155 558 rna-XM_020571649.1 17327622 10 1447212 1447769 Heterostelium album 2086695 ATT|GTATGTTATA...ATAAATTTAATT/ATAAATTTAATT...TAAAG|TAT 0 1 83.847
92592786 GT-AG 0 1.000000099473604e-05 85 rna-XM_020571649.1 17327622 11 1446841 1446925 Heterostelium album 2086695 ATG|GTAATAAATA...ATTGTATTATTG/AATTGTATTATT...TAAAG|ATA 1 1 88.659
92592787 GT-AG 0 0.0003657977665204 456 rna-XM_020571649.1 17327622 12 1445868 1446323 Heterostelium album 2086695 AAA|GTCTGTTACA...AGATCCTTCTTT/CTGTACATCACC...AATAG|CAA 2 1 97.358

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