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

✎ 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
55534323 GT-AG 0 1.000000099473604e-05 255 rna-XM_023079634.1 10113137 1 2810146 2810400 Cucurbita moschata 3662 CAG|GTAAAGTGGT...ACAACTTTGATT/TTATCATTTACT...TTCAG|TCG 0 1 2.916
55534324 GT-AG 0 0.0962349862368328 119 rna-XM_023079634.1 10113137 2 2808692 2808810 Cucurbita moschata 3662 AAG|GTATTCTCTC...GTGTTCTTTATG/GTGTTCTTTATG...GACAG|AAA 0 1 22.581
55534325 GC-AG 0 1.000000099473604e-05 108 rna-XM_023079634.1 10113137 3 2807258 2807365 Cucurbita moschata 3662 CAG|GCAAGTACTT...TTTTTCTCAAAT/GTTTTTCTCAAA...ATTAG|GGT 0 1 42.112
55534326 GT-AG 0 6.194350026297324e-05 253 rna-XM_023079634.1 10113137 4 2806892 2807144 Cucurbita moschata 3662 CAA|GTAAGTTTAA...TGTTTCTGGACT/ATTATTTTCATC...GTCAG|GTA 2 1 43.777
55534327 GT-AG 0 0.0001888849321184 93 rna-XM_023079634.1 10113137 5 2806711 2806803 Cucurbita moschata 3662 CTT|GTAGGTCACT...TTTGTCTTAATA/TTTTTGTTTATG...TGTAG|GTT 0 1 45.073
55534328 GT-AG 0 0.000321922484364 168 rna-XM_023079634.1 10113137 6 2806456 2806623 Cucurbita moschata 3662 CAG|GTACATTCCA...GGTACTTTATTC/TGGTACTTTATT...TACAG|GTC 0 1 46.354
55534329 GT-AG 0 1.000000099473604e-05 83 rna-XM_023079634.1 10113137 7 2806280 2806362 Cucurbita moschata 3662 AAG|GTCAGTAAAA...TTACTCATACCA/AGCTTACTCATA...TGCAG|AGC 0 1 47.724
55534330 GT-AG 0 1.000000099473604e-05 82 rna-XM_023079634.1 10113137 8 2806114 2806195 Cucurbita moschata 3662 CAA|GTAAGAGATG...GATTTCTTCACT/GATTTCTTCACT...CACAG|GAG 0 1 48.962
55534331 GT-AG 0 1.000000099473604e-05 680 rna-XM_023079634.1 10113137 9 2805230 2805909 Cucurbita moschata 3662 CAG|GTTTGTCAAG...TATGTTTTAATG/TATGTTTTAATG...TGCAG|AAT 0 1 51.966
55534332 GT-AG 0 0.0004117367168397 74 rna-XM_023079634.1 10113137 10 2804913 2804986 Cucurbita moschata 3662 AAG|GTATGATTTT...TCAGTTTTGAAA/TTTCTTTTCATT...TTCAG|GTT 0 1 55.546
55534333 GT-AG 0 1.000000099473604e-05 102 rna-XM_023079634.1 10113137 11 2803239 2803340 Cucurbita moschata 3662 CTG|GTAAATCATT...TGCTTTTTAAAC/TATGTTTTTATG...TTCAG|CCC 0 1 78.701
55534334 GT-AG 0 3.652035558765803e-05 295 rna-XM_023079634.1 10113137 12 2802398 2802692 Cucurbita moschata 3662 AGG|GTACGTGTAA...TAAATTTTAATT/TAAATTTTAATT...TTCAG|TGC 0 1 86.743
55534335 GT-AG 0 0.0005381214203486 2835 rna-XM_023079634.1 10113137 13 2799311 2802145 Cucurbita moschata 3662 GAG|GTATGATTTT...TGTCCCTTTGTG/CCCTTTGTGATA...TACAG|GTA 0 1 90.455

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