If you haven't used one of these notebooks before, they're basically web pages in which you can write, edit, and run live code. They're meant to encourage experimentation, so don't feel nervous. Just try running a few cells and see what happens!.
Some tips:
# first we create a directory to store the scripts and output files
%mkdir binder_tests
s = '''rnartist {
svg {
path = "binder_tests/"
}
ss {
bn {
seq = "UCUUUCGUUUAUCAGGUCCGUCGCUGGGCUUUCCGUAAGAUUCUCACGUCGAAUGGUGUUCGGAGACUGAACUUUUUUAGCUUUAUGAGGGGGGUUACAGACUUCCGUCUGCUACGUGCGGGGGAACCGUACCACUGUCGGAUGUGGUCCCUUGCGCUCAAGGUGCUGCGACGCGCAGGUGCGUGAUCCAGAUAGGCAACACCCAUAUCAAUGCUAUCUGGAGGUAGUAUUGAUAGCCGUGGCUGGCUAUGUGUUUUGUGCUGAUAACCAUCAGACGGUGCCGGU"
value = "(((..(((..(((..(((((....))))).(((..(((..(((..(((((....)))))..)))..(((((....)))))..)))...))).)))..(((((....)))))..)))...)))...(((..(((.(((..(((..(((..(((((....)))))..)))..(((((....)))))..)))...)))...(((..(((..(((..(((((....)))))..)))..(((((....)))))..)))...))).(((((....)))))..)))...)))"
name = "rna1"
}
}
theme {
details_lvl = 5
color {
value = "#800080"
type = "R"
}
color {
value = "#ffcc80"
type = "Y"
}
color {
value = "#000000"
type = "y"
}
color {
value = "#99cc99"
location {
145 to 168
}
}
color {
value = "#b31a1a"
location {
199 to 235
248 to 259
}
}
hide {
location {
38 to 83
}
type = "N n"
}
hide {
location {
98 to 111
}
type = "R r"
}
hide {
location {
235 to 239
244 to 248
}
type = "N n"
}
hide {
location {
145 to 168
}
type = "helix junction"
}
hide {
location {
199 to 235
248 to 259
}
type = "N n interaction_symbol"
}
line {
type = "phosphodiester_bond"
value = 2.2
}
line {
location {
145 to 168
}
value = 5.0
}
line {
location {
199 to 235
248 to 259
}
type = "secondary_interaction phosphodiester_bond interaction_symbol"
value = 5.0
}
}
layout {
junction {
type = 3
out_ids = "wnw n"
}
junction {
location {
206 to 209
232 to 235
248 to 251
}
out_ids = "n e"
}
}
}
'''
%store s >binder_tests/demo1.kts
# we ask rnartistcore to draw the 2D as described in the script file
%%bash
java -jar RNArtistCore/target/rnartistcore_with-dependencies.jar binder_tests/demo1.kts
#we display the 2D saved in an SVG file
from IPython.core.display import SVG #<-- this line only needs to be run once per notebook
# the output file name is like: filename defined in the script + molecular chain name (default name is 'A').
SVG(filename='binder_tests/rna1.svg')
s = '''rnartist {
svg {
path = "binder_tests/"
}
ss {
vienna {
file = "RNArtistCore/samples/rna.vienna"
}
}
theme {
details_lvl = 5
color {
type = "A"
value = "#A0ECF5"
}
color {
type = "a"
value = "black"
}
color {
type = "U"
value = "#9157E5"
}
color {
type = "G"
value = "darkgreen"
}
color {
type = "C"
value = "#E557E5"
}
}
}
'''
%store s >binder_tests/demo2.kts
%%bash
java -jar RNArtistCore/target/rnartistcore_with-dependencies.jar binder_tests/demo2.kts
SVG(filename='binder_tests/A.svg')
s = '''rnartist {
svg {
path = "binder_tests/"
}
ss {
pdb {
name = "B"
file = "RNArtistCore/samples/1gid.pdb"
}
}
theme {
details_lvl = 5
color {
type = "A"
value = "#A0ECF5"
}
color {
type = "a"
value = "black"
}
color {
type = "U"
value = "#9157E5"
}
color {
type = "G"
value = "darkgreen"
}
color {
type = "C"
value = "#E557E5"
}
}
}
'''
%store s >binder_tests/demo3.kts
%%bash
java -jar RNArtistCore/target/rnartistcore_with-dependencies.jar binder_tests/demo3.kts
SVG(filename='binder_tests/B.svg')