This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| EPlATAT00000000138 | chr2 | 96.97 | 66 | 2 | 0 | 1 | 66 | 189 | 0.80 | 0.80 | 2e-24 | 111 | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| EPlATAT00000000138 | chr2 | 96.97 | 66 | 2 | 0 | 1 | 66 | 189 | 0.01 | 0.02 | 2e-24 | 111 | |
| EPlATAT00000000228 | chr2 | 91.43 | 35 | 3 | 0 | 9 | 43 | 120 | 0.002 | 0.003 | 9e-06 | 49.1 | |
| EPlATAT00000000333 | chr2 | 92.86 | 42 | 3 | 0 | 42 | 83 | 94 | 0.95 | 1.0 | 8e-10 | 62.1 | |
| EPlATAT00000000333 | chr2 | 85.11 | 47 | 7 | 0 | 31 | 77 | 94 | 0.7 | 0.7 | 6e-06 | 49.1 | |
| EPlATAT00000000333 | chr2 | 63.55 | 31 | 2 | 0 | 1 | 31 | 94 | 0.81 | 0.82 | 2e-05 | 47.3 | |
| EPlATAT00000000354 | chr2 | 83.52 | 91 | 13 | 2 | 1 | 89 | 132 | 0.6 | 0.7 | 3e-16 | 84.2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| arquivo = [] | |
| with open('arquivoteste.csv') as arq: | |
| linhas = arq.readlines() | |
| for linha in linhas: | |
| coluna = linha.split(',') | |
| qcov = float(coluna[9]) * 100.0 | |
| pident = float(coluna[2]) | |
| if qcov >= 80.0 and pident >= 80.0: | |
| print(linha) | |
| arquivo.append(linha) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| int main(int argc, char *argv[]) | |
| { | |
| int mat[2][2] = {{1,2}, {3,4}}; | |
| int i, j, soma = 0; | |
| for(i = 0; i < 2; i++) | |
| { | |
| for(j = 0; j < 2; j++) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # lendo o arquivo busca.out | |
| nomes = [] | |
| with open('busca.out') as arq: | |
| linhas = arq.readlines() | |
| for linha in linhas: | |
| nomes.append(linha.split(' ')[0]) | |
| # buscando os nomes no arquivo ensembl34.fa | |
| with open('ensembl34.fa') as arq: | |
| linhas = arq.readlines() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| #include <string.h> | |
| using namespace std; | |
| class Pessoa | |
| { | |
| private: | |
| char nome[100]; | |
| public: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Pessoa | |
| { | |
| private: | |
| char nome[100]; | |
| int idade; | |
| float peso; | |
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Pessoa | |
| { | |
| private: | |
| char nome[100]; | |
| int idade; | |
| float peso; | |
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- Formulário --> | |
| <form action="https://leadlovers.com/Pages/Index/122345" method="post" > | |
| <input id="id" name="id" type="hidden" value="122345" /> | |
| <input id="pid" name="pid" type="hidden" value="3500785" /> | |
| <input id="list_id" name="list_id" type="hidden" value="122345" /> | |
| <input id="provider" name="provider" type="hidden" value="leadlovers" /> | |
| <label for="name">Nome:</label> | |
| <input class="form-control" id="name" name="name" placeholder="Nome:" type="text" /> | |
| <label for="email">E-mail:</label> | |
| <input class="form-control" id="email" name="email" placeholder="Email:" type="text" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| lista = [20, 10, 5, 30] | |
| item = 30 | |
| ''' | |
| for i in lista: | |
| if i == item: | |
| print('Item encontrado') | |
| break | |
| else: | |
| print('O item nao foi encontrado') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| #include <vector> | |
| #include <list> | |
| using namespace std; | |
| int main(int argc, char *argv[]) | |
| { | |
| // criando os vetores e adicionando elementos aos vetores | |
| vector<int> v1, v2; |