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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase, in_cds

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
84902498 GT-AG 0 1.000000099473604e-05 117 rna-XM_017751566.1 15733615 2 143357478 143357594 Gossypium arboreum 29729 CAG|GTAGGACAAA...GCTTTTTTATTT/TTTTATTTTATT...TGAAG|GGC 0 1 42.233
84902499 GT-AG 0 1.000000099473604e-05 129 rna-XM_017751566.1 15733615 3 143357031 143357159 Gossypium arboreum 29729 AAG|GTGAATTACT...CCATCTTTATTT/TATTTATTTATT...TTCAG|GAA 0 1 49.54
84902500 GT-AG 0 1.000000099473604e-05 114 rna-XM_017751566.1 15733615 4 143356788 143356901 Gossypium arboreum 29729 CAG|GTATGGATAG...TTTCCTATAAAG/AAGAAATTGAGA...TTAAG|GCT 0 1 52.505
84902501 GT-AG 0 1.000000099473604e-05 156 rna-XM_017751566.1 15733615 5 143356509 143356664 Gossypium arboreum 29729 CAG|GTTATTGTGA...TTCTGCTTGCTG/TGCTTGCTGATA...GCCAG|TTT 0 1 55.331
84902502 GT-AG 0 1.000000099473604e-05 125 rna-XM_017751566.1 15733615 6 143356216 143356340 Gossypium arboreum 29729 CAG|GTGAACATAA...GAGTCTTTGAAC/TTTTTTTTAAGC...TGCAG|ATT 0 1 59.191
84902503 GT-AG 0 1.000000099473604e-05 134 rna-XM_017751566.1 15733615 7 143355959 143356092 Gossypium arboreum 29729 GAG|GTAATACAGT...TTTCTCTTTGCA/TCTCTTTGCATC...CACAG|GCT 0 1 62.017
84902504 GT-AG 0 0.643612293198416 297 rna-XM_017751566.1 15733615 8 143355527 143355823 Gossypium arboreum 29729 CAG|GTATCCGAGC...GCCTTTTTGATA/AACTGTTTAACT...GGCAG|AGG 0 1 65.119
84902505 GT-AG 0 2.756770124985689e-05 84 rna-XM_017751566.1 15733615 9 143355315 143355398 Gossypium arboreum 29729 GAA|GTAAGTCTGA...TTGGTTTTACAT/TTTGGTTTTACA...TTCAG|ATA 2 1 68.061
84902506 GT-AG 0 1.0749258983367511 70 rna-XM_017751566.1 15733615 10 143355136 143355205 Gossypium arboreum 29729 CAG|GTATCTCTTA...TATTTCTTTACA/TATTTCTTTACA...GACAG|GGT 0 1 70.565
84902507 GT-AG 0 0.0002099772103262 1178 rna-XM_017751566.1 15733615 11 143353613 143354790 Gossypium arboreum 29729 AAG|GTAACTGCTT...GATTCTTTGTTT/TGTGGTCTTATG...ATAAG|GTT 0 1 78.493
84902508 GT-AG 0 1.000000099473604e-05 103 rna-XM_017751566.1 15733615 12 143353366 143353468 Gossypium arboreum 29729 CAG|GTAATTTATA...CTTTTGTTAATT/CTTTTGTTAATT...TGCAG|GCT 0 1 81.801
84902509 GT-AG 0 4.265321366850359e-05 187 rna-XM_017751566.1 15733615 13 143352886 143353072 Gossypium arboreum 29729 AAG|GTATTGGAAT...TCTCCCTTATCT/CCTTATCTAATG...TTCAG|GTA 2 1 88.534
84914361 GT-AG 0 0.0021770420992782 182 rna-XM_017751566.1 15733615 1 143359440 143359621 Gossypium arboreum 29729 CAG|GTAACTCTCT...TTCTTTTTATTT/TTTCTTTTTATT...TTCAG|GGA   0 3.424

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