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

✎ 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
210095525 GT-AG 0 1.000000099473604e-05 4278 rna-XM_034833603.1 38062738 1 20253572 20257849 Vitis riparia 96939 CAG|GTTCTTCTAT...TAGTTTTTATTT/CTAGTTTTTATT...CATAG|GTA 0 1 1.386
210095526 GT-AG 0 1.000000099473604e-05 138 rna-XM_034833603.1 38062738 2 20252888 20253025 Vitis riparia 96939 CAG|GTAAGTAATG...GGTTTATTGACT/TTTTTTTTCAAT...GACAG|GTC 0 1 7.856
210095527 GT-AG 0 1.000000099473604e-05 142 rna-XM_034833603.1 38062738 3 20251519 20251660 Vitis riparia 96939 AAG|GTGAGAAACT...TTTTTTTCAACT/ATTTTTTTCAAC...ATTAG|GTT 0 1 22.396
210095528 GT-AG 0 1.000000099473604e-05 152 rna-XM_034833603.1 38062738 4 20251042 20251193 Vitis riparia 96939 AAG|GTTTGTCAAG...TAACCCTTGCAT/AAAATACTAACC...TACAG|AGT 1 1 26.247
210095529 GT-AG 0 0.0007697236580556 90 rna-XM_034833603.1 38062738 5 20250696 20250785 Vitis riparia 96939 TAG|GTATGGTTTA...GCAATTTTGATT/TACTATTTCATT...TTTAG|GTA 2 1 29.281
210095530 GT-AG 0 7.478562693124918e-05 115 rna-XM_034833603.1 38062738 6 20250364 20250478 Vitis riparia 96939 AAG|GTACATAACT...TATACCTTAGAT/TGATTTTTTATA...ATCAG|GTT 0 1 31.852
210095531 GT-AG 0 0.0686873418461744 152 rna-XM_034833603.1 38062738 7 20249868 20250019 Vitis riparia 96939 TGG|GTATGCTCTT...AATCTGTTATCT/TGTTCTATTATT...GTTAG|GAA 2 1 35.928
210095532 GT-AG 0 1.000000099473604e-05 749 rna-XM_034833603.1 38062738 8 20248588 20249336 Vitis riparia 96939 AAG|GTGTGTGGAT...GTAGTTTTATCT/GAATTTCTAATT...TGCAG|CTT 2 1 42.221
210095533 GT-AG 0 1.000000099473604e-05 350 rna-XM_034833603.1 38062738 9 20247040 20247389 Vitis riparia 96939 CAG|GTGATCATTC...CACTTCTTGTTT/AGTTTTCTCACT...TGTAG|GAC 0 1 56.417
210095534 GT-AG 0 1.000000099473604e-05 315 rna-XM_034833603.1 38062738 10 20246371 20246685 Vitis riparia 96939 AAG|GTGTGTTAGA...TATTTCTTTTTA/TTTCTTTTTATT...TGCAG|CTA 0 1 60.611
210095535 GT-AG 0 1.000000099473604e-05 3959 rna-XM_034833603.1 38062738 11 20242174 20246132 Vitis riparia 96939 CAG|GTAAAACTAT...ATCTTTTTGGTT/TTGGTATTCAAA...TGCAG|GTA 1 1 63.432
210095536 GT-AG 0 3.774125485450246e-05 98 rna-XM_034833603.1 38062738 12 20239452 20239549 Vitis riparia 96939 AAG|GTATTACCAA...TTTCTTTTACCT/CTTTCTTTTACC...TTCAG|GTG 0 1 94.525
210095537 GT-AG 0 1.000000099473604e-05 561 rna-XM_034833603.1 38062738 13 20238742 20239302 Vitis riparia 96939 GAG|GTCAGTTAAA...TTCTTTTTATTT/TTTCTTTTTATT...TTCAG|TAA 2 1 96.291

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