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)

10 rows where transcript_id = 23220244

✎ 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
126296780 GT-AG 0 9.839809766860636e-05 278 rna-gnl|WGS:JACVTC|H8356DRAFT_mRNA918512 23220244 1 945198 945475 Neocallimastix sp. jgi-2020a 2767002 AAG|GTAATTTTTT...AATTATTTAATT/AATTATTTAATT...AAAAG|GTA 0 1 7.365
126296781 GT-AG 0 0.0642537981387198 374 rna-gnl|WGS:JACVTC|H8356DRAFT_mRNA918512 23220244 2 945953 946326 Neocallimastix sp. jgi-2020a 2767002 GCT|GTATGTTATG...AATATCATAATA/ATAATATTAATA...AAAAG|GTT 0 1 29.887
126296782 GT-AG 0 0.0012549035811452 114 rna-gnl|WGS:JACVTC|H8356DRAFT_mRNA918512 23220244 3 946357 946470 Neocallimastix sp. jgi-2020a 2767002 GAA|GTACGTATTG...ATATTATTAATA/ATATTATTAATA...TTAAG|AAT 0 1 31.303
126296783 GT-AG 0 0.0001675990678847 174 rna-gnl|WGS:JACVTC|H8356DRAFT_mRNA918512 23220244 4 946614 946787 Neocallimastix sp. jgi-2020a 2767002 AAG|GTATTTTTAT...ATAAAATAAATA/AATAAAATAAAT...GTAAG|ATG 2 1 38.055
126296784 GT-AG 0 9.755924699015246e-05 169 rna-gnl|WGS:JACVTC|H8356DRAFT_mRNA918512 23220244 5 946885 947053 Neocallimastix sp. jgi-2020a 2767002 AAG|GTTTTGTATT...ATATTTTTAATA/TATTATTTTATT...AAAAG|ACT 0 1 42.635
126296785 GT-AG 0 0.8240764904862363 114 rna-gnl|WGS:JACVTC|H8356DRAFT_mRNA918512 23220244 6 947289 947402 Neocallimastix sp. jgi-2020a 2767002 ATG|GTATCATTTT...TATTTTATAATT/TATAATTTAATT...ATTAG|CTA 1 1 53.73
126296786 GT-AG 0 1.000000099473604e-05 145 rna-gnl|WGS:JACVTC|H8356DRAFT_mRNA918512 23220244 7 947450 947594 Neocallimastix sp. jgi-2020a 2767002 AAG|GTTAAAAAAA...TATTTATTAATT/TATTTATTAATT...TAAAG|AGT 0 1 55.949
126296787 GT-AG 0 9.304843107570468e-05 176 rna-gnl|WGS:JACVTC|H8356DRAFT_mRNA918512 23220244 8 947651 947826 Neocallimastix sp. jgi-2020a 2767002 ACT|GTAAGTAATT...TTTCTTTTATTA/ATTTCTTTTATT...TTTAG|AAC 2 1 58.593
126296788 GT-AG 0 1.2446977510304837e-05 377 rna-gnl|WGS:JACVTC|H8356DRAFT_mRNA918512 23220244 9 948302 948678 Neocallimastix sp. jgi-2020a 2767002 GAA|GTAATGCTCA...TTTATCTTAAAA/TTTTTTGTAATT...AATAG|GCT 0 1 81.02
126296789 GT-AG 0 1.000000099473604e-05 230 rna-gnl|WGS:JACVTC|H8356DRAFT_mRNA918512 23220244 10 949038 949267 Neocallimastix sp. jgi-2020a 2767002 GAG|GTAAAAAAAA...CTTTTTTTATTT/TCTTTTTTTATT...CATAG|ATA 2 1 97.97

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