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)

14 rows where transcript_id = 5774012

✎ 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
29499367 GT-AG 0 0.0002139549837686 191 rna-XM_020361352.2 5774012 1 4415878 4416068 Cajanus cajan 3821 CAG|GTTTTTTCTT...TGGATTTTAATG/ATGTTGGTCACT...TGTAG|GAA 0 1 9.349
29499368 GT-AG 0 0.000551252359537 366 rna-XM_020361352.2 5774012 2 4415357 4415722 Cajanus cajan 3821 ATG|GTATGTCATT...ATGATTTTGATT/ATGATTTTGATT...TGCAG|GGC 2 1 15.464
29499369 GT-AG 0 1.000000099473604e-05 110 rna-XM_020361352.2 5774012 3 4415054 4415163 Cajanus cajan 3821 GAA|GTAAGTGGAA...TATTCCTTTTTG/CTTTTTGTCATC...GGCAG|AGC 0 1 23.077
29499370 GT-AG 0 5.781650817959608e-05 95 rna-XM_020361352.2 5774012 4 4414840 4414934 Cajanus cajan 3821 AAA|GTAAACCCCT...ACTAACTTAATA/GGTTTACTAACT...CATAG|GTT 2 1 27.771
29499371 GT-AG 0 0.015252467007758 108 rna-XM_020361352.2 5774012 5 4414515 4414622 Cajanus cajan 3821 CAA|GTAACTTATC...CCAACTTCAACA/CTTTTACAAATT...AGCAG|GTA 0 1 36.331
29499372 GT-AG 0 0.0004779231151163 87 rna-XM_020361352.2 5774012 6 4414332 4414418 Cajanus cajan 3821 GTG|GTAAGCTATC...TGTTTTTTAATA/TGTTTTTTAATA...GACAG|GTC 0 1 40.118
29499373 GT-AG 0 9.952902199630204e-05 96 rna-XM_020361352.2 5774012 7 4414062 4414157 Cajanus cajan 3821 CAG|GTATGTATAT...TTCCATTTGATC/TTCCATTTGATC...AACAG|GAT 0 1 46.982
29499374 GT-AG 0 1.000000099473604e-05 105 rna-XM_020361352.2 5774012 8 4413840 4413944 Cajanus cajan 3821 CAG|GTTACTACCC...TCTGTTTTGCTG/TATAAATTAATT...ACCAG|GGA 0 1 51.598
29499375 GT-AG 0 1.000000099473604e-05 210 rna-XM_020361352.2 5774012 9 4413463 4413672 Cajanus cajan 3821 AAG|GTAGATGTCA...ATGGTATTAACT/ATGGTATTAACT...TGCAG|CAA 2 1 58.185
29499376 GT-AG 0 1.000000099473604e-05 103 rna-XM_020361352.2 5774012 10 4413135 4413237 Cajanus cajan 3821 TAT|GTAAGTGAAA...TCTCTCTTGAAT/ACTATATTTATC...AACAG|TGG 2 1 67.061
29499377 GT-AG 0 1.000000099473604e-05 133 rna-XM_020361352.2 5774012 11 4412435 4412567 Cajanus cajan 3821 ATG|GTTCAAATGC...ATTCCCTTTTCA/TCCCTTTTCATG...TGTAG|CTA 2 1 89.428
29499378 GT-AG 0 1.000000099473604e-05 94 rna-XM_020361352.2 5774012 12 4412202 4412295 Cajanus cajan 3821 TTG|GTAAGTCAAC...CCACCTTTGATA/ATTAATGTCATG...CACAG|GTG 0 1 94.911
29499379 GT-AG 0 0.0130472441648198 110 rna-XM_020361352.2 5774012 13 4412006 4412115 Cajanus cajan 3821 AAG|GTATGCAACA...TTACTCTTAACT/TTCTATTTTATC...TGCAG|CAA 2 1 98.304
29499380 GT-AG 0 1.000000099473604e-05 80 rna-XM_020361352.2 5774012 14 4411899 4411978 Cajanus cajan 3821 AAG|GTAAGATTTA...AAATTCTTGCTT/TATAAACTTACA...TTTAG|CTT 2 1 99.369

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