How can I convert .ali file to FASTA format?
I found .ali file with alignment in this article but I can't open it properly, can you please suggest some programs or web applications to convert it to a more convenient format?
fasta
ali
• 1,926 views
•
link
updated
by
Ram
•
written
by
Vladimir Leshuk •
0 answers
No answers yet.
Log in to answer this question.
More posts like this
-
Understand the Fields from Illumina Infinium Genotype Report
written by pfee418 •Hi everyone, I've been trying to search around for the documentation of Illumina microarray genotype reports (.txt format) as I would like to understand the …
-
Tool: driveR - Prioritizing Cancer Driver Genes Using Genomics Data
written by egeulgenHello all, <img src="https://github.com/egeulgen/driveR/raw/master/inst/extdata/driveR_logo.png?raw=true" align="left" height=100/> I would like to introduce our group's new R package for driver gene prioritization: [driveR][1] (latest release is v0.2). …
-
TCGA LUAD clinical dataset iCluster.group variable
written by up201505092 •Hi, I'm conducting research using TCGA lung cancer datasets. In the LUAD clinical dataset, there is a variable called `paper_iCluster.group` which I can't find the …
-
How to customize the values?
written by USER •How to customize the values assigned to nucleotides A, T, C, G in Codonw? And the equation? Equation 1 code = ((P1 - 1)*16) + …
-
Free PMC Article access through FTP service - NCBI
written by vighnesh202 •I am trying to download "**Free PMC Articles**"(preferably in PDF format) through FTP service(whose PMCID is collected through Entrez API). I am aware that PMC …
-
SAM / BAM alignments
written by JohnHello all, There are some aspects of the SAM/BAM format that I still do not understand, one of which is what secondary alignments should point …
-
Processing SOLiD data but cannot find relevant documentation on tools (BFAST)
written by ehzed •I realize that almost no one uses SOLiD sequencing anymore, but unfortunately [this paper does][1] and for my project (chicken related) it would be useful …
-
Forum: Bioinformatics short paper journal resource [software/webapps/database]
written by Sukhi SinghI wrote a short paper recently regarding a web application I developed, but had a hard time in finding a list of journals which would …
-
Tutorial: InsideDNA: Samtools guide: learning how to filter and manipulate with SAM/BAM files
written by shilparaopradeep •Samtools is a set of utilities that manipulate alignments in the BAM format. It imports from and exports to the SAM (Sequence Alignment/Map) format, does …
-
Forum: Principles of Tidy Data (Hadley Wickham) and the VCF format
written by Giovanni M Dall'OlioHadley Wickham, the author of ggplot and many other popular R packages, has recently published a very good paper regarding [the principles of tidy data][1]. …
You can open it with a text editor (vi, nano, gedit, geany, textpad etc on GNU-linux, notepad++ on windows). However, the file seems to be in non-standard .ali format. There are many ali files and I looked at 13062_2009_161_MOESM2_ESM.ali.
Try this script:
tr -s $'\t' < 13062_2009_161_MOESM2_ESM.ali | awk -v OFS="\n" '{print ">"$1,$2}' > 13062_2009_161_MOESM2_ESM.faThanks a lot!!! Your script has solved my problem)