convert list to fasta format
How can I convert a Python list of peptide sequences to fasta format?
python
fasta
• 1,413 views
•
link
written
by
pinheirofabiano •
0 answers
No answers yet.
Log in to answer this question.
More posts like this
-
convert list to fasta format
written by pinheirofabiano •I'm writing the Python script below. I had some issues, but now it's working, my main difficulty now is to save the output (a list) …
-
download fasta file from uniprot
written by pinheirofabiano •Hi, I need to download a fasta file from uniprot, containing a list of the protein sequences of every secretory protein described to date with …
-
Obtaining FASTA format from blastp output
written by mbrav005 •Is it possible to convert BLAST hits from the blastp command in order to have the output into a FASTA file containing the sequences of …
-
Download all peptide sequences from NCBI in fasta format?
written by Tom •I want to download in fasta format all the peptide sequences in the NCBI protein database (i.e. > and the peptide name, followed by the …
-
How to get DNA sequences of multiple peptide sequences (25600) in R or Python
written by ishackmHi all, I have a file of 25600 peptide sequences: >sp YYRITYGETGGNSPVQEFTVPGSK >sp YYTEFPTVLDITAEDPSK >sp YYTGVVNNNEMVALQR >sp YYTLNGSK >sp YYTSASGDEMVSLK >sp YYTYLIMNK >sp YYVTIIDAPGHR >sp …
-
fasta to fastq without quality scores
written by inayatkhan8185 •is it possible to convert fasta to fastq format without quality scores? if not how one can get quality scores of fasta sequences already in …
-
How Can I get a list of sequences in fasta format from the Blast output hits?
written by yaadriana7 •Question: How Can I get a list of sequences in fasta format from the Blast output hits?
-
Obtain peptide sequences from aminoacid change and gene list
written by tiziana.langella89 •I have excel file with more of 100 mutations and this information for each mutations: "chromosome","position","ref","alt","Codon_Change","Amino_Acid_Change","Gene_Name". How can I convert this list to obtain all …
-
How To Make Multiple Fasta-->Pdb Conversions For Short Peptides (4 Or 5 Aminoacid Long)
written by Onat •<p>Hi, I would like to perform a virtual screening for tetramers on a protein of interest. For this purpose, I randomly generate thousands of different …
-
How To Add A Unique Identifier For Fasta File To A Long List Of Sequences
written by Stevebob •<p>I have a long list of sequences and I want to convert this list to a fasta file. How do I add > and a …
show us what you tried.
I just have a python list, containing several peptide sequences, each peptide is 50 amino acids length. I want to run this list in a machine learning program, but before I need to put it in fasta format.
I'm writing the Python script below. I had some issues, but now it's working, my main difficulty now is to convert the output (a list) to fasta format. Do I need to convert the list to a panda dataframe before? or there is a more straight forward way to do it? can you give me a more pythonic answer?