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

✎ 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
86766311 GT-AG 0 0.0003324133379926 842 Gomus.A01G108200.1.v1.1 16261822 1 19237824 19238665 Gossypium mustelinum 34275 CAG|GTCCCTCTAT...CCATTCATATCA/TATCAATTTATC...TGCAG|ATA 0 1 4.373
86766312 GT-AG 0 4.420644071013366e-05 1087 Gomus.A01G108200.1.v1.1 16261822 2 19235638 19236724 Gossypium mustelinum 34275 GAG|GTATGATAAT...ACATATTTAACA/ACATATTTAACA...CACAG|AGG 1 1 39.974
86766313 GT-AG 0 0.2371597546417476 85 Gomus.A01G108200.1.v1.1 16261822 3 19235334 19235418 Gossypium mustelinum 34275 CTG|GTATTCGTTA...TTTCTCTTAATA/CATTTTGTCATC...GTTAG|GTT 1 1 47.068
86766314 GC-AG 0 1.000000099473604e-05 245 Gomus.A01G108200.1.v1.1 16261822 4 19234868 19235112 Gossypium mustelinum 34275 AAG|GCATGGCATC...GTTTCTTTGAAA/TCCTTCCTGAAT...AGCAG|GTT 0 1 54.227
86766315 GT-AG 0 1.000000099473604e-05 386 Gomus.A01G108200.1.v1.1 16261822 5 19234407 19234792 Gossypium mustelinum 34275 CTT|GTGAGCATTT...TTGTCTTTCTTA/GTCTTTCTTATT...TTCAG|GTC 0 1 56.657
86766316 GT-AG 0 1.000000099473604e-05 84 Gomus.A01G108200.1.v1.1 16261822 6 19234251 19234334 Gossypium mustelinum 34275 GAG|GTACTACCAA...ATGTCATTGATT/TGATTTCTGACT...TGTAG|GCT 0 1 58.989
86766317 GT-AG 0 0.3361690552061653 1393 Gomus.A01G108200.1.v1.1 16261822 7 19232759 19234151 Gossypium mustelinum 34275 CAG|GTAGCCTTAC...TTTTCTTTATTT/CTTTATTTCACC...TTTAG|GGG 0 1 62.196
86766318 GT-AG 0 1.000000099473604e-05 76 Gomus.A01G108200.1.v1.1 16261822 8 19232611 19232686 Gossypium mustelinum 34275 CAG|GTAAATTTAA...AATTTTCTGACA/AATTTTCTGACA...TCTAG|GTC 0 1 64.529
86766319 GT-AG 0 0.6380430584692716 905 Gomus.A01G108200.1.v1.1 16261822 9 19231591 19232495 Gossypium mustelinum 34275 CGG|GTACCTTTTA...TTGTCCTTTTCA/CATTTACTAATT...TTAAG|GTT 1 1 68.254
86766320 GT-AG 0 1.904935302666708e-05 104 Gomus.A01G108200.1.v1.1 16261822 10 19231418 19231521 Gossypium mustelinum 34275 AAG|GTCTTTCCTT...GGTTCTGTAACA/ATTTTATTCATC...TTCAG|GAT 1 1 70.489
86766321 GT-AG 0 0.0019338623747464 88 Gomus.A01G108200.1.v1.1 16261822 11 19231029 19231116 Gossypium mustelinum 34275 ACA|GTATGGATGA...AATTCCTTCTCT/TTTTTTCTCATT...GACAG|AAA 2 1 80.24
86766322 GT-AG 0 0.0003698059288071 403 Gomus.A01G108200.1.v1.1 16261822 12 19230544 19230946 Gossypium mustelinum 34275 AAG|GTGACCCTGA...TGATCTTTAATG/TTAGTCTTGATC...GGCAG|GAC 0 1 82.896

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