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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
210095951 GT-AG 0 1.000000099473604e-05 1395 rna-XM_034839690.1 38062769 1 3474975 3476369 Vitis riparia 96939 GAG|GTGGGCTCGT...ATTCCTTTGGAA/CATGATCTAAGA...TGCAG|GTC 0 1 7.916
210095952 GT-AG 0 0.0007992209359093 2223 rna-XM_034839690.1 38062769 2 3472542 3474764 Vitis riparia 96939 CAA|GTATTGATTT...TTTCTTTCAATT/CTTTCTTTCAAT...GGCAG|GTG 0 1 13.57
210095953 GT-AG 0 1.000000099473604e-05 93 rna-XM_034839690.1 38062769 3 3472254 3472346 Vitis riparia 96939 CAG|GTAAATGTTT...AAATTTTTGGTT/TTTTGGTTGACT...TGAAG|GTT 0 1 18.821
210095954 GT-AG 0 0.0001792640709416 414 rna-XM_034839690.1 38062769 4 3471490 3471903 Vitis riparia 96939 CAG|GTATTGTACT...GCTTCTTTGTCA/TTCTTTGTCAAT...TGCAG|TAT 2 1 28.244
210095955 GT-AG 0 1.000000099473604e-05 256 rna-XM_034839690.1 38062769 5 3471008 3471263 Vitis riparia 96939 CAG|GTTAGGATTT...TGTCCCTTAAGA/AGAATGTTTACC...TGTAG|GTT 0 1 34.33
210095956 GT-AG 0 8.371073696169407e-05 108 rna-XM_034839690.1 38062769 6 3470731 3470838 Vitis riparia 96939 CAG|GTTCTCTATC...CTTCTCTTGCTG/TGGCTACTTATG...TGCAG|CTC 1 1 38.88
210095957 GT-AG 0 1.000000099473604e-05 177 rna-XM_034839690.1 38062769 7 3469324 3469500 Vitis riparia 96939 AAG|GTTTGTGCCA...GAATATTTGATG/TTGATGTTCATT...TTTAG|GCA 1 1 71.998
210095958 GT-AG 0 0.0002868260393108 81 rna-XM_034839690.1 38062769 8 3469071 3469151 Vitis riparia 96939 AAG|GTTTGTTCCT...ATATTCTTATCA/CATATTCTTATC...CTTAG|TCG 2 1 76.629
210095959 GT-AG 0 0.0039488998786607 98 rna-XM_034839690.1 38062769 9 3468751 3468848 Vitis riparia 96939 TAG|GTAACTTTAT...ATTTACTTATTC/TATTTACTTATT...TGCAG|GAA 2 1 82.606
210095960 GT-AG 0 1.000000099473604e-05 12049 rna-XM_034839690.1 38062769 10 3456564 3468612 Vitis riparia 96939 GAG|GTAAAAGAAC...GATTTCTTGATA/AACTTTTTGACT...TTCAG|GAC 2 1 86.322
210095961 GT-AG 0 0.2110280780577565 125 rna-XM_034839690.1 38062769 11 3456204 3456328 Vitis riparia 96939 CAG|GTCTCCCTTT...TCCTCTTTCATT/TTGTTACTAAAT...GTCAG|GCA 0 1 92.649
210095962 GT-AG 0 1.000000099473604e-05 4444 rna-XM_034839690.1 38062769 12 3451700 3456143 Vitis riparia 96939 GCA|GTAAGAAAAA...GTTTTCATATCC/CCTGTTTTCATA...TTCAG|GTT 0 1 94.265
210095963 GT-AG 0 1.000000099473604e-05 91 rna-XM_034839690.1 38062769 13 3451537 3451627 Vitis riparia 96939 CAG|GTAAACAAAC...GATTCCTTTGTT/TGTCTACTGAAT...ATCAG|GAC 0 1 96.204

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