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

✎ 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
126296809 GT-AG 0 1.000000099473604e-05 92 rna-gnl|WGS:JACVTC|H8356DRAFT_mRNA1021748 23220251 1 2522069 2522160 Neocallimastix sp. jgi-2020a 2767002 ATT|GTTCGTAAAA...CACATCCTAATA/ATAATACTAATA...TATAG|GTC 2 1 8.879
126296810 GT-AG 0 0.0008066098203418 76 rna-gnl|WGS:JACVTC|H8356DRAFT_mRNA1021748 23220251 2 2522236 2522311 Neocallimastix sp. jgi-2020a 2767002 AAT|GTATGTAAAT...AATATTTTAAAT/AATTAATTTATT...AATAG|GTG 2 1 12.599
126296811 GT-AG 0 7.448648669400331e-05 172 rna-gnl|WGS:JACVTC|H8356DRAFT_mRNA1021748 23220251 3 2522387 2522558 Neocallimastix sp. jgi-2020a 2767002 TTT|GTAAATATAC...TATTTTTTGTTT/TTTGTATTTATA...TATAG|AGG 2 1 16.319
126296812 GT-AG 0 1.000000099473604e-05 111 rna-gnl|WGS:JACVTC|H8356DRAFT_mRNA1021748 23220251 4 2522628 2522738 Neocallimastix sp. jgi-2020a 2767002 ATT|GTAATAAAAA...TTTTTTTTAAAA/TTTTTTTTTAAA...AATAG|AAT 2 1 19.742
126296813 GT-AG 0 7.305613421215921e-05 71 rna-gnl|WGS:JACVTC|H8356DRAFT_mRNA1021748 23220251 5 2522808 2522878 Neocallimastix sp. jgi-2020a 2767002 GTT|GTAAGTATAT...ATCGTTTTAATA/ATCGTTTTAATA...TATAG|GGA 2 1 23.165
126296814 GT-AG 0 0.01026598748034 128 rna-gnl|WGS:JACVTC|H8356DRAFT_mRNA1021748 23220251 6 2522951 2523078 Neocallimastix sp. jgi-2020a 2767002 GCT|GTAATTTTTT...CTATTATTAATA/TTTTTTTTCAAT...GAAAG|TTA 2 1 26.736
126296815 GT-AG 0 0.0010325494302305 98 rna-gnl|WGS:JACVTC|H8356DRAFT_mRNA1021748 23220251 7 2523139 2523236 Neocallimastix sp. jgi-2020a 2767002 ACT|GTAAGTTGAA...ATATTCTTATTT/TATATTCTTATT...AATAG|TTA 2 1 29.712
126296816 GT-AG 0 5.57527672891121e-05 87 rna-gnl|WGS:JACVTC|H8356DRAFT_mRNA1021748 23220251 8 2523309 2523395 Neocallimastix sp. jgi-2020a 2767002 AAT|GTAAATTAAA...TAATTCATAACT/TATATACTAATT...TTTAG|GAT 2 1 33.284
126296817 GT-AG 0 0.0021200668664518 108 rna-gnl|WGS:JACVTC|H8356DRAFT_mRNA1021748 23220251 9 2523468 2523575 Neocallimastix sp. jgi-2020a 2767002 ATT|GTAAATTATC...TTAATTTTAATA/TATTTATTAATT...TTTAG|AAA 2 1 36.855
126296818 GT-AG 0 6.170491798047219e-05 88 rna-gnl|WGS:JACVTC|H8356DRAFT_mRNA1021748 23220251 10 2523645 2523732 Neocallimastix sp. jgi-2020a 2767002 TTT|GTAAGTATAT...TAATTATTAATT/TAATTATTAATT...TAAAG|GGA 2 1 40.278

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