Questions: 5 831

Answers by our Experts: 5 728

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Search & Filtering

I am doing protein simulations on AQP2 analyzing the impact of amino acid mutations on water permeability To check the permeation event I've got this permeation script in tcl language (permeation.tcl) running well.

But i want to know permeation events results occurring in each pore of AQP2 separately. As i have performed a single simulation but with different mutations in each monomers.

PS: simulation is performed on system containing water box and lipid bilayer having AQP2 embedded in it with no concentration gradient.

Here is my script; can anybody help in modify this script according to requirement i have mentioned earlier?
Old Macdonald had a farm, E-I-E-I-O
And on his farm he had a Python, E-I-E-I-O
With a ssss-ssss here and a ssss-ssss there
Here a ssss there a ssss
Everywhere a ssss-ssss
Old Macdonald had a farm, E-I-E-I-Oa = input("Enter an animal: ")
s = input ("Enter a sound: ")

e = "E"

print ("Old Macdonald had a farm, " + e)
print ("And on his farm he had a" + a + "," + e)
print ("With a " + a + "-" + a + " here and a" + s + "-" + s + " there")
print ("Here a "+ s+ " there a " +s)
print ("Everywhere a" + s + "-" + a )
print ("Old Macdonald had a farm," + e)
One of the following 10 statements generates an error. Which one? (Your answer should be a number between 1 and 10.)
x = [1,"abcd",2,"efgh",[3,4]] # Statement 1
y = x[0:6] # Statement 2
z = x # Statement 3
w = y # Statement 4
x[1] = x[1][0:3] + 'd' # Statement 5
y[2] = 4 # Statement 6
z[1][1:3] = 'yzw' # Statement 7
z[0] = 0 # Statement 8
w[4][0] = 1000 # Statement 9
a = (x[4][1] == 4) # Statement 10
Write a function to return the larger of two numbers entered from two user inputted values, where the user inputs are entered after the displays of “First Entry = ” and “Second Entry = ”. The numbers should be decimal values (not just integers)
Write a function to return the word that is first alphabetically from two user inputted text entries, where the
user inputs that text by entering their own words after the displays of “First Entry = “ and “Second Entry = “. Remember that you can use the < and > operators with strings. (You can assume that the user only inputs lower case words.)
Write a python function that can finds the following from a given list of strings. How many word start with “Help”? How many words contain “lp” in it? Print the largest string? Print three smallest strings? Print a string which contains ‘lo’ and has length of atleast 10
Write a program that asks the user to enter a single character and then outputs the ASCII number of that character. Please follow the same format as in the sample run.

Your program should accept one character only for each ask. Test your code by entering a word, such as paper. What happens? Review any error messages received in CodeSkulptor.

Sample Run 1
Enter a character: %
ASCII #37
Sample Run 2
Enter a character: 8
ASCII #56
Write code to output the ASCII characters that are represented by the numbers from 45 to 85, one per line.

Expected Output
-
.
/
0
1
2
3
4
5
6
7
8
9
:
;
<
=
>
?
@
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
Write a python function that can finds the following from a given list of strings.
How many word start with “Help”?
How many words contain “lp” in it?
Print the largest string?
Print three smallest strings?
Print a string which contains ‘lo’ and has length of atleast 10
Write a python function that can find the average of given list of numbers. It prints all numbers whose values is less than the average on the screen.
LATEST TUTORIALS
APPROVED BY CLIENTS