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)

11 rows where transcript_id = 2065731

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
11204189 GT-AG 0 1.6639469006916204e-05 14032 rna-XM_029085693.1 2065731 1 104351 118382 Antrostomus carolinensis 279965 TAG|GTAGGTATAG...GTATTCTTATTA/TGTATTCTTATT...GACAG|ATG 1 1 11.202
11204190 GT-AG 0 1.000000099473604e-05 7230 rna-XM_029085693.1 2065731 2 97079 104308 Antrostomus carolinensis 279965 CAG|GTGAGTAAAC...TTTTTTTTAATG/TTTTTTTTAATG...TGAAG|GAT 1 1 16.94
11204191 GT-AG 0 1.000000099473604e-05 351 rna-XM_029085693.1 2065731 3 96647 96997 Antrostomus carolinensis 279965 AAG|GTAGGTGGTC...AGGGTCATAGTC/CAAGATGTAATG...TTAAG|TTG 1 1 28.005
11204192 GT-AG 0 1.000000099473604e-05 11913 rna-XM_029085693.1 2065731 4 84731 96643 Antrostomus carolinensis 279965 TTG|GTCAGGTAAT...TATATCATAAAT/ATAATTTTTATG...AATAG|GTG 1 1 28.415
11204193 GT-AG 0 1.443439831734788e-05 3412 rna-XM_029085693.1 2065731 5 81256 84667 Antrostomus carolinensis 279965 CAG|GTTTGTGTTG...ATTTCCTTGGTT/TTCTCTTTCATT...TATAG|ATG 1 1 37.022
11204194 GT-AG 0 1.0974902103669483e-05 9443 rna-XM_029085693.1 2065731 6 71744 81186 Antrostomus carolinensis 279965 AAG|GTACAGATTG...GTTTGTTTATTT/TGTTTGTTTATT...CTCAG|ACT 1 1 46.448
11204195 GT-AG 0 1.000000099473604e-05 627 rna-XM_029085693.1 2065731 7 71039 71665 Antrostomus carolinensis 279965 AAG|GTAAAATTTT...TCATTTTCAATT/ATTGTGCTGATG...AACAG|GAC 1 1 57.104
11204196 GT-AG 0 1.000000099473604e-05 993 rna-XM_029085693.1 2065731 8 69971 70963 Antrostomus carolinensis 279965 AAG|GTACTGCACA...TTCTTTTTATCA/CTTCTTTTTATC...TTCAG|AGC 1 1 67.35
11204197 GT-AG 0 1.000000099473604e-05 23436 rna-XM_029085693.1 2065731 9 46439 69874 Antrostomus carolinensis 279965 GAG|GTGAGGCTAC...ATGATGTTGAGA/ATGATGTTGAGA...GGGAG|TGG 1 1 80.464
11204198 GT-AG 0 0.0160250804565219 6430 rna-XM_029085693.1 2065731 10 39997 46426 Antrostomus carolinensis 279965 CGG|GTATAATTCT...ACTTCTTTGACT/ACTTCTTTGACT...TTTAG|AGG 1 1 82.104
11204199 GT-AG 0 0.0456461037723486 5554 rna-XM_029085693.1 2065731 11 34374 39927 Antrostomus carolinensis 279965 ACG|GTATGTTTTT...GAATCCTGAATA/AATTTGATGACT...TTCAG|CTG 1 1 91.53

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