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

✎ 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
21587620 GT-AG 0 0.001284359545923 1101 rna-XM_010688658.2 4181826 1 32449087 32450187 Beta vulgaris 161934 CAG|GTTACTTTTA...AAATCATTGACT/AAATCATTGACT...TGCAG|ATA 0 1 4.614
21587621 GT-AG 0 1.000000099473604e-05 6213 rna-XM_010688658.2 4181826 2 32441589 32447801 Beta vulgaris 161934 GAG|GTAGGAAGTT...CATTTTTTAATT/CATTTTTTAATT...CTCAG|AGG 1 1 44.947
21587622 GT-AG 0 0.0037614326920887 87 rna-XM_010688658.2 4181826 3 32441277 32441363 Beta vulgaris 161934 CTG|GTATGGTTAA...TTTCTCTTAGCA/ATTTCTCTTAGC...ATTAG|GTT 1 1 52.009
21587623 GT-AG 0 1.000000099473604e-05 5001 rna-XM_010688658.2 4181826 4 32436052 32441052 Beta vulgaris 161934 AAG|GTATTGGCAA...GAATCTTTATAA/AGAATCTTTATA...TGAAG|GTT 0 1 59.04
21587624 GT-AG 0 1.000000099473604e-05 1538 rna-XM_010688658.2 4181826 5 32434439 32435976 Beta vulgaris 161934 CTT|GTGAGTAGCT...TCAACTTTAATA/TAAATATTGATC...TCTAG|GTT 0 1 61.394
21587625 GT-AG 0 2.185814785109669e-05 81 rna-XM_010688658.2 4181826 6 32434286 32434366 Beta vulgaris 161934 GAG|GTATAACATG...ATGGATTTAACA/ATGGATTTAACA...TCCAG|GCT 0 1 63.653
21587626 GT-AG 0 1.000000099473604e-05 868 rna-XM_010688658.2 4181826 7 32433319 32434186 Beta vulgaris 161934 CAG|GTAATGCCAT...TTGTCTTTATTC/GTTGTCTTTATT...GGCAG|GAG 0 1 66.761
21587627 GT-AG 0 0.0022768369237979 89 rna-XM_010688658.2 4181826 8 32433158 32433246 Beta vulgaris 161934 CAG|GTAGACTTCA...TGATTTTTGATT/TGATTTTTGATT...TACAG|GTC 0 1 69.021
21587628 GT-AG 0 0.0035203513054579 193 rna-XM_010688658.2 4181826 9 32432850 32433042 Beta vulgaris 161934 AAG|GTATTTTAAT...GATGTTTTGATA/GATGTTTTGATA...TTAAG|GCT 1 1 72.63
21587629 GT-AG 0 0.0213164014310023 140 rna-XM_010688658.2 4181826 10 32432641 32432780 Beta vulgaris 161934 AAG|GTATGCTGTG...ATCATTTTGATT/ATCATTTTGATT...TTCAG|GAC 1 1 74.796
21587630 GT-AG 0 0.0005007584375588 91 rna-XM_010688658.2 4181826 11 32432243 32432333 Beta vulgaris 161934 TCG|GTATGATGCT...ATATCCTTTGTC/TCTGATGTCATA...CACAG|AAG 2 1 84.432
21587631 GT-AG 0 1.000000099473604e-05 324 rna-XM_010688658.2 4181826 12 32431843 32432166 Beta vulgaris 161934 AAG|GTAGGCCAGT...TATTTCTGAATT/TTTATCTTCATG...TGCAG|GAC 0 1 86.817

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