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

✎ 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
18022107 GT-AG 0 1.000000099473604e-05 746 rna-XM_020403380.1 3611924 1 66921126 66921871 Asparagus officinalis 4686 GAG|GTCAGGAATT...AGAGCTTTAAAT/TTAAATCTCATT...GTTAG|ATA 2 1 1.642
18022108 GT-AG 0 0.0024119780499354 88 rna-XM_020403380.1 3611924 2 66922052 66922139 Asparagus officinalis 4686 AAG|GTATATATCA...AACTCCTTTGCT/ATTGAAATAATT...ATTAG|GTT 2 1 6.65
18022109 GT-AG 0 1.000000099473604e-05 84 rna-XM_020403380.1 3611924 4 66922262 66922345 Asparagus officinalis 4686 ATG|GTGAGTAATA...TTTATTTTAACA/TTTATTTTAACA...GGCAG|GGA 0 1 10.017
18022110 GT-AG 0 0.0022710221247605 936 rna-XM_020403380.1 3611924 5 66922386 66923321 Asparagus officinalis 4686 AAG|GTATATCTAA...TATTCATTAAAT/TAGGATTTAACA...TACAG|TCA 1 1 11.13
18022111 GT-AG 0 7.696725483400004e-05 113 rna-XM_020403380.1 3611924 6 66923363 66923475 Asparagus officinalis 4686 GTG|GTACTGTCTA...TTATTCTTGGTG/TCCCTTTTCATA...GATAG|AAT 0 1 12.27
18022112 GT-AG 0 0.0002723961333274 133 rna-XM_020403380.1 3611924 7 66923532 66923664 Asparagus officinalis 4686 AAG|GTTTGCCTTA...TTGTCCTTTTTT/ATTGTTTTTATG...TACAG|GCG 2 1 13.829
18022113 GT-AG 0 0.003526749311752 9226 rna-XM_020403380.1 3611924 8 66923818 66933043 Asparagus officinalis 4686 GCT|GTAAGCTCAC...TTTTCCTTTGTT/AGCATACTTATT...AACAG|GGA 2 1 18.086
18022114 GT-AG 0 1.000000099473604e-05 451 rna-XM_020403380.1 3611924 9 66933256 66933706 Asparagus officinalis 4686 GAG|GTAAATAATC...TAATTTTTGAAT/TAATTTTTGAAT...TCCAG|ATG 1 1 23.984
18022115 GT-AG 0 0.0024226728767958 726 rna-XM_020403380.1 3611924 10 66934975 66935700 Asparagus officinalis 4686 AAG|GTATTTCTAT...TACATTTTAATT/TACATTTTAATT...TCCAG|GAA 0 1 59.265
18022116 GT-AG 0 2.9792080718502813e-05 731 rna-XM_020403380.1 3611924 11 66936619 66937349 Asparagus officinalis 4686 GAG|GTAGTTTATG...TACTATTTGATG/GCATTATTCATG...TTCAG|GTT 0 1 84.808
18022117 GT-AG 0 4.433724542643694e-05 414 rna-XM_020403380.1 3611924 12 66937696 66938109 Asparagus officinalis 4686 ATG|GTAACAACTT...CAGCTCTTGGCT/ACTAATTTTACA...TTCAG|TTC 1 1 94.435
18022118 GT-AG 0 1.000000099473604e-05 118 rna-XM_020403380.1 3611924 13 66938170 66938287 Asparagus officinalis 4686 AAG|GTTAGTCTTA...TTGTCATTGTTT/GTTGTTGTCATT...TGCAG|CTT 1 1 96.105

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