Skip to content

Instantly share code, notes, and snippets.

View HelioNeves's full-sized avatar
🏠
Skills Improvement

Hélio Neves HelioNeves

🏠
Skills Improvement
View GitHub Profile
@HelioNeves
HelioNeves / Useful+Docker+Commands.md
Last active September 14, 2019 00:29
List of useful Docker Commands.

Start your docker image with iterativity

docker start -i [image-name]

Remove all your docker images

docker rm $(docker ps -a -q)
@HelioNeves
HelioNeves / transcipt.py
Created May 12, 2019 06:09
Transcribing DNA in Python
#Reading the line from file and putting in a content string
line = open('rosalind_rna.txt', 'r').readline()
'''METHOD 1 Iteration
Iterating across the input string, character by character
and as strings are immutable, we made a new one
'''
input_iteration = str()
for i in range(len(line)):
if line[i] == 'T':