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

✎ 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
174594021 GT-AG 0 1.000000099473604e-05 57 rna-NZN594_LOCUS703 31341673 1 3760954 3761010 Rotaria sp. silwood1 2762511 CCG|GTAAAAATAA...TACTATTTAAAT/ATTTAAATTATT...TTCAG|CTA 1 1 14.134
174594022 GT-AG 0 0.0001142133086276 61 rna-NZN594_LOCUS703 31341673 2 3760158 3760218 Rotaria sp. silwood1 2762511 TTG|GTTTGTATCA...TATGTTTTATTT/TTATGTTTTATT...TATAG|GTA 1 1 34.705
174594023 GT-AG 0 1.000000099473604e-05 62 rna-NZN594_LOCUS703 31341673 3 3759946 3760007 Rotaria sp. silwood1 2762511 GAG|GTAAATAAAA...ATTCATTTAAAA/AACGTATTCATT...ATCAG|GTG 1 1 38.903
174594024 GT-AG 0 0.0002497169044849 61 rna-NZN594_LOCUS703 31341673 4 3759560 3759620 Rotaria sp. silwood1 2762511 ACA|GTAAAATTAT...ATTCTTTTAAAT/ATTCTTTTAAAT...ATTAG|AGC 2 1 47.999
174594025 GT-AG 0 1.000000099473604e-05 52 rna-NZN594_LOCUS703 31341673 5 3759368 3759419 Rotaria sp. silwood1 2762511 GAG|GTAAGAATTT...GTATGCTTAAAA/TTGTTTTTTATG...TGTAG|GGG 1 1 51.917
174594026 GT-AG 0 1.218666338698282e-05 53 rna-NZN594_LOCUS703 31341673 6 3758916 3758968 Rotaria sp. silwood1 2762511 AAG|GTAACAGATT...TTTTTCTGAAAA/CTTTTTCTGAAA...ATTAG|ATA 1 1 63.084
174594027 GT-AG 0 1.9692066291804152e-05 673 rna-NZN594_LOCUS703 31341673 7 3758149 3758821 Rotaria sp. silwood1 2762511 ACA|GTAAGTAAAC...AATATCTTATCA/ATTATTTTCAAT...TCTAG|TGA 2 1 65.715
174594028 GT-AG 0 1.1839788374860658e-05 54 rna-NZN594_LOCUS703 31341673 8 3757788 3757841 Rotaria sp. silwood1 2762511 CAA|GTAAAATGAT...TGTTTCTTGAAT/TTAATATTCATT...TCTAG|TTT 0 1 74.307
174594029 GT-AG 0 0.0001643423906936 55 rna-NZN594_LOCUS703 31341673 9 3757496 3757550 Rotaria sp. silwood1 2762511 CAA|GTAAGTTCGT...TATTTTTTGACA/TTTTGTTTTATT...TTTAG|CCA 0 1 80.94
174594030 GT-AG 0 2.3681034956482945e-05 64 rna-NZN594_LOCUS703 31341673 10 3757145 3757208 Rotaria sp. silwood1 2762511 GGA|GTAAGTTAAT...AATTTTATGATT/AATTTTATGATT...ATTAG|TAT 2 1 88.973
174594031 GT-AG 0 1.000000099473604e-05 784 rna-NZN594_LOCUS703 31341673 11 3756167 3756950 Rotaria sp. silwood1 2762511 TTG|GTAAGTTGAA...TATGTCATAATG/ATAGAACTTATG...TTTAG|GTG 1 1 94.402
174594032 GT-AG 0 1.000000099473604e-05 60 rna-NZN594_LOCUS703 31341673 12 3756012 3756071 Rotaria sp. silwood1 2762511 AAG|GTACGAAAAA...ACTTTTTTAACT/ACTTTTTTAACT...TTTAG|ATG 0 1 97.061

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