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)

13 rows where transcript_id = 26973314

✎ 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
149878665 GT-AG 0 1.000000099473604e-05 24696 rna-XM_033967739.1 26973314 1 28849365 28874060 Periophthalmus magnuspinnatus 409849 CAC|GTAAGTCCTT...TGTCTCTTTGGT/AAAGTAGTAACT...TGCAG|ATT 1 1 1.0
149878666 GT-AG 0 1.000000099473604e-05 3000 rna-XM_033967739.1 26973314 2 28845126 28848125 Periophthalmus magnuspinnatus 409849 CAG|GTAATGTAGT...CCTGTCATAACT/ATAACTCTGACC...CCAAG|GCT 1 1 29.821
149878667 GT-AG 0 1.000000099473604e-05 489 rna-XM_033967739.1 26973314 3 28844464 28844952 Periophthalmus magnuspinnatus 409849 AAG|GTGAGACGGA...TATTCTGTAAAG/TAGTAGCTAATG...TGCAG|GTC 0 1 33.845
149878668 GT-AG 0 1.000000099473604e-05 13051 rna-XM_033967739.1 26973314 4 28830923 28843973 Periophthalmus magnuspinnatus 409849 CAG|GTGTGTGCTT...TTTACTTTGATT/CTTTGATTTATT...TTTAG|CGG 1 1 45.243
149878669 GT-AG 0 0.0005570946395092 20328 rna-XM_033967739.1 26973314 5 28810322 28830649 Periophthalmus magnuspinnatus 409849 CAG|GTATGTTTGT...TCGTATTTACTG/ATCGTATTTACT...TGCAG|AAA 1 1 51.593
149878670 GT-AG 0 0.0011486805988105 6529 rna-XM_033967739.1 26973314 6 28803550 28810078 Periophthalmus magnuspinnatus 409849 CAG|GTATCAGAGT...TTTTCTTTTTCT/TTTGGTTTGATT...TTCAG|AAA 1 1 57.246
149878671 GT-AG 0 1.000000099473604e-05 466 rna-XM_033967739.1 26973314 7 28803029 28803494 Periophthalmus magnuspinnatus 409849 CAG|GTGAGTCCAA...AGCTCCCTGATA/TGATGTCTCATG...TTCAG|TCC 2 1 58.525
149878672 GT-AG 0 1.000000099473604e-05 5813 rna-XM_033967739.1 26973314 8 28797115 28802927 Periophthalmus magnuspinnatus 409849 ACG|GTAAGGCTTC...CTAGTTTTAAAT/AATCTGTTCATC...TTTAG|ACT 1 1 60.875
149878673 GT-AG 0 6.767806470319308e-05 2620 rna-XM_033967739.1 26973314 9 28794357 28796976 Periophthalmus magnuspinnatus 409849 CGG|GTACGTTAAC...CCCGTCTTATAT/CCCCGTCTTATA...TTCAG|AGG 1 1 64.085
149878674 GT-AG 0 1.000000099473604e-05 1256 rna-XM_033967739.1 26973314 10 28792929 28794184 Periophthalmus magnuspinnatus 409849 CAG|GTGAGTGCAT...TGATTCTTCCCC/TGTGGTCTGATT...TCCAG|CTG 2 1 68.086
149878675 GT-AG 0 0.021326991617549 6374 rna-XM_033967739.1 26973314 11 28786388 28792761 Periophthalmus magnuspinnatus 409849 CAG|GTATCGCTGG...TGTACTCTAACA/TGTACTCTAACA...TCCAG|TCC 1 1 71.97
149878676 GT-AG 0 1.000000099473604e-05 1241 rna-XM_033967739.1 26973314 12 28784943 28786183 Periophthalmus magnuspinnatus 409849 AAG|GTAAGACATG...ATGTCCCTGTTG/TCTTAAATTACT...CCCAG|GCT 1 1 76.716
149878677 GT-AG 0 1.000000099473604e-05 6159 rna-XM_033967739.1 26973314 13 28778606 28784764 Periophthalmus magnuspinnatus 409849 CAA|GTAAGGAAAG...CTGTCCTTCCCG/TGTGTGCTGTCC...TGCAG|GTG 2 1 80.856

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