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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase, in_cds

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
65073528 GT-AG 0 1.000000099473604e-05 4109 rna-XM_026114984.1 11997944 2 7920083 7924191 Dromaius novaehollandiae 8790 CAG|GTTAGGAAGG...AATTCCTTGTCA/TCAAACTTCATT...TTCAG|AGT 0 1 18.587
65073529 GT-AG 0 2.1498672179219e-05 883 rna-XM_026114984.1 11997944 3 7924298 7925180 Dromaius novaehollandiae 8790 ATG|GTTTGTTGAA...TAACTCTTGTTC/AGCATACTGATA...TGCAG|AAG 1 1 23.513
65073530 GT-AG 0 1.044429392142352e-05 16934 rna-XM_026114984.1 11997944 4 7925690 7942623 Dromaius novaehollandiae 8790 GAG|GTAAAGTGTC...CTTCTTTTGACT/CTTCTTTTGACT...ACAAG|CAC 0 1 47.165
65073531 GT-AG 0 1.000000099473604e-05 9717 rna-XM_026114984.1 11997944 5 7942699 7952415 Dromaius novaehollandiae 8790 AAG|GTGATGCTTC...GTTTGTGTAACT/GTTTGTGTAACT...CCCAG|GAG 0 1 50.651
65073532 GT-AG 0 0.000166122554997 1365 rna-XM_026114984.1 11997944 6 7952494 7953858 Dromaius novaehollandiae 8790 AAG|GTAAGCTATT...TCTCTCTTACTT/TTCTCTCTTACT...ATTAG|TTG 0 1 54.275
65073533 GT-AG 0 1.000000099473604e-05 3781 rna-XM_026114984.1 11997944 7 7954019 7957799 Dromaius novaehollandiae 8790 TGG|GTAAGTAATA...CTTTTGTTATTA/TCTTTTGTTATT...TGCAG|AAA 1 1 61.71
65073534 GT-AG 0 1.754833345714037e-05 1768 rna-XM_026114984.1 11997944 8 7957922 7959689 Dromaius novaehollandiae 8790 CAG|GTAAGCCTGA...TTCTCTTTCACT/TTCTCTTTCACT...TACAG|AAC 0 1 67.379
65073535 GT-AG 0 1.000000099473604e-05 1443 rna-XM_026114984.1 11997944 9 7959756 7961198 Dromaius novaehollandiae 8790 GAG|GTAAGACAGC...CTTTCCTAAACC/TCTTTCCTAAAC...TGCAG|GAA 0 1 70.446
65073536 GT-AG 0 0.0031559122665926 1253 rna-XM_026114984.1 11997944 10 7961343 7962595 Dromaius novaehollandiae 8790 AAG|GTACGCTATT...GTTTTCTTATAC/GGTTTTCTTATA...AATAG|GTA 0 1 77.138
65073537 GT-AG 0 0.0023251965384221 2388 rna-XM_026114984.1 11997944 11 7962707 7965094 Dromaius novaehollandiae 8790 AAG|GTAACTTGTT...GCTTTCTTTGCA/ATAAAATTGATG...TGCAG|CAT 0 1 82.296
65073538 GT-AG 0 0.0044070529295381 815 rna-XM_026114984.1 11997944 12 7965194 7966008 Dromaius novaehollandiae 8790 AAG|GTAACTTCCT...ATTTCTTTGTCG/CAGGTGTTAAAT...CTTAG|TAT 0 1 86.896
65073539 GT-AG 0 1.000000099473604e-05 1606 rna-XM_026114984.1 11997944 13 7966130 7967735 Dromaius novaehollandiae 8790 CAG|GTAATAATGT...CATTTTTTAATT/CATTTTTTAATT...AACAG|AGT 1 1 92.519
65074139 GT-AG 0 1.000000099473604e-05 42354 rna-XM_026114984.1 11997944 1 7877609 7919962 Dromaius novaehollandiae 8790 GAG|GTGAGTGGGG...GTTTTCTTAAAC/TACAATTTGACT...TTCAG|ATG   0 13.011

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