Get chromosome sizes from fasta file (2024)

Table of Contents
Usage Binary References

Get chromosome sizes from fasta file

6

Entering edit mode

8.6 years ago

rioualen ▴ 750

Hello,

I'm wondering whether there is a program that could calculate chromosome sizes from any fasta file? The idea is to generate a tab file like the one expected in bedtools genomecov for example.

I know there's the fetchChromSize program from UCSC, but not all genomes are available over there (I need TAIR10 for instance). I've read this topic already.

I would like a tool that can deal with any genome regardless of the database. If it doesn't exist I guess it's possible to just parse fasta files, but I'd be surprised if no one else had done it before!

Cheers

genome ucsc • 45k views

ADD COMMENTlink updated 9 days ago by Dave Carlson ★ 1.9k • written 8.6 years ago by rioualen ▴ 750

1

Entering edit mode

A quick google search would help you. For e.x

http://www.danielecook.com/generate-fasta-sequence-lengths/

ADD REPLYlink updated 5.3 years ago by Ram 44k • written 8.6 years ago by GouthamAtla 12k

Entering edit mode

I did look it up on google, but thank you anyway.

ADD REPLYlink 8.6 years ago by rioualen ▴ 750

24

Entering edit mode

pip install pyfaidxfaidx input.fasta -i chromsizes > sizes.genome

That's what you're looking for if you want to use bedtools genomecov, but you can transform to a BED file as well using -i bed.

ADD COMMENTlink updated 5.3 years ago by Ram 44k • written 8.6 years ago by Matt Shirley 10k

Entering edit mode

Looks perfect! Thank you.

ADD REPLYlink updated 5.3 years ago by Ram 44k • written 8.6 years ago by rioualen ▴ 750

30

Entering edit mode

8.6 years ago

rioualen ▴ 750

Just found out faidx is available with samtools so another possibility is:

samtools faidx input.facut -f1,2 input.fa.fai > sizes.genome

ADD COMMENTlink updated 5.3 years ago by Ram 44k • written 8.6 years ago by rioualen ▴ 750

1

Entering edit mode

ALSo can be in this format at once:

samtools faidx genome.fa | cut -f1,2 > chromsizes

ADD REPLYlink 3.9 years ago by Apex92 ▴ 300

Entering edit mode

Tried this. Didn't work because samtools faidx genome.fa outputs to genome.fa.fai. Therefore, the command by rioualen should be the one used.

Unless maybe you use some type of flags in the command, maybe you could use pipes to run it as a one-line command as Apex92 tried.

ADD REPLYlink 3.0 years ago by Pratik ★ 1.0k

Entering edit mode

This is the only line that worked for me, except the line only produced a output.fa.fai file which was identical to the chromsizes file i was looking except for extra columns (ie cut -f1,2 didnt work in this line)

samtools faidx input.fa | cut -f1,2 > chromsizes

However after getting that .fa.fai file i was able to cut out just the columns i needed (chromosome name & size) to produce the .sizes files i needed (also correction to the above the cut command needs to be given an input and output files).

cut -f1,2 Hel_final_2016_new.fa.fai > Hel_final_2016_new.fa.sizes

As a result you can run this line twice to make it work (since the first time it runs it will create the .fai file that the second use of the line will require):

samtools faidx Hel_final_2016_new.fa | cut -f1,2 Hel_final_2016_new.fa.fai > Hel_final_2016_new.fa.sizes

ADD REPLYlink 22 months ago by jamesogilvie1 • 0

Entering edit mode

the pipe in this case is not good practice here. there is no piping being used. replace with a semicolon, or "&&"

ADD REPLYlink 9 days ago by cmdcolin ★ 3.9k

Entering edit mode

samtools faidx does not work for this purpose.

ADD REPLYlink 2.2 years ago by tomas4482 ▴ 420

2

Entering edit mode

5.3 years ago

gbdias ▴ 150

  • Another good option is to use the faSize command from UCSC tools. It works on any fasta file, not just UCSC genomes.

  • You run it like this: faSize -detailed -tab file.fasta

  • Default behavior is to print to STDOUT, so you can redirect the output to a file like this:faSize -detailed -tab file.fasta > output.txt

  • The output will be a tab delimited file with sequence name on the first column and the length on the second.

  • You can easily install faSize and other tools from UCSC using Bioconda https://anaconda.org/bioconda/ucsc-fasize

ADD COMMENTlink 5.3 years ago by gbdias ▴ 150

1

Entering edit mode

9 days ago

alejandrogzi ▴ 140

Hi all,

check this: https://github.com/alejandrogzi/chromsize

Usage

Binary

Usage: chromsize --fasta <FASTA> --output <OUTPUT> [-t <THREADS>]Arguments: -f, --fasta <FASTA>: FASTA file -o, --output <OUTPUT>: path to chrom.sizesOptions: -t, --threads <THREADS>: number of threads [default: your max ncpus] --help: print help --version: print version

build in rust, the simplest and fastest way to get them. Works as a binary, library and is ported to python. Here is the benchmark with a lot of tools:

Get chromosome sizes from fasta file (6)

ADD COMMENTlink 9 days ago by alejandrogzi &utrif; 140

1

Entering edit mode

I guessed before checking that this tool was written in rust. I was right. :)

ADD REPLYlink 9 days ago by Dave Carlson &starf; 1.9k

Entering edit mode

5.9 years ago

aleferna &utrif; 10

samtools was crashing because I included the HLA's,

HLA-A*01:01:38L 3374
Traceback (most recent call last): File "/usr/local/bin/faidx", line 11, in <module> load_entry_point('pyfaidx==0.5.2', 'console_scripts', 'faidx')() File "/usr/local/lib/python2.7/dist-packages/pyfaidx/cli.py", line 197, in main write_sequence(args) File "/usr/local/lib/python2.7/dist-packages/pyfaidx/cli.py", line 50, in write_sequence outfile.write(transform_sequence(args, fasta, name, start, end)) File "/usr/local/lib/python2.7/dist-packages/pyfaidx/cli.py", line 120, in transform_sequence line_len = fasta.faidx.index[name].lencKeyError: 'HLA-A*01'

Finally just did:

from Bio import SeqIOfor rec in SeqIO.parse("hg38-Mix.fa","fasta"): print rec.id+"\t"+str(len(rec.seq))

ADD COMMENTlink updated 5.3 years ago by Ram 44k • written 5.9 years ago by aleferna &utrif; 10

Entering edit mode

faidx was failing because the cli script expects UCSC-style regions encoded as contig:start-end, where start-end is optional. Since the HLA alt contains contain : characters you ran into a parsing issue. If you want to use pyfaidx in the same way as biopython you can do:

from pyfaidx import Fastafor rec in Fasta("hg38-Mix.fa"): printrec.name + str(len(rec)))

This will be much faster if you have a lot of sequences since none of the pyfaidx operations require reading the sequence unless you start slicing strings.

ADD REPLYlink 5.9 years ago by Matt Shirley 10k

Login before adding your answer.

Get chromosome sizes from fasta file (2024)

References

Top Articles
Tara Brown Sleep Styler Net Worth
How to See All Drives Available on the Computer
Digitaler Geldbeutel fürs Smartphone: Das steckt in der ID Wallet-App
Burkes Outlet Credit Card Sign In
Meet Scores Online 2022
Uta Kinesiology Advising
Scriblr Apa
Saxies Lake Worth
Poochies Liquor Store
Metro By T Mobile Sign In
Milk And Mocha Bear Gifs
Henry Ford Hospital: Ein Meisterwerk von Frida Kahlo
Large Storage Unit Nyt Crossword
What Is a Food Bowl and Why Are They So Popular?
Roadwarden Thais
Uw Oshkosh Wrestling
Lima Crime Stoppers
Ice Crates Terraria
Bunni.soph
Aston Carter hiring HR Specialist in Inwood, WV | LinkedIn
Optum Primary Care - Winter Park Aloma
O'reilly's In Mathis Texas
The Front Porch Self Service
Monkey Werx Sitrep 2022
Sissy Hypno Gif
Black Boobs Oiled
Craigslist St. Paul
Baldurs Gate 3 Igg
10 Top-Rated Tourist Attractions in Negril
Craigslist Mexico Cancun
Reisen in der Business Class | Air Europa Deutschland
Paul Mauro Bio
Bridger Elementary Logan
Lesley Ann Downey Transcript
Best Truck Lease Deals $0 Down
Candy Land Santa Ana
Sessional Dates U Of T
Let's Take a Look Inside the 2024 Hyundai Elantra - Kelley Blue Book
Victor Predictions Today
Ella And David Steve Strange
Ohio State Football Wiki
Cvs On 30Th And Fowler
Riscap Attorney Registration
Limestone Bank Hillview
Erica Mena Net Worth Forbes
Gwcc Salvage
Uk Pharmacy Turfland
Rainfall Map Oklahoma
La tarifa "Go Hilton" para los amigos y familiares de los miembros del equipo - Lo que debe saber
St Anthony Hospital Crown Point Visiting Hours
Captain Phillips Full Movie Free
Walb Game Forecast
Latest Posts
Article information

Author: Velia Krajcik

Last Updated:

Views: 6023

Rating: 4.3 / 5 (54 voted)

Reviews: 93% of readers found this page helpful

Author information

Name: Velia Krajcik

Birthday: 1996-07-27

Address: 520 Balistreri Mount, South Armand, OR 60528

Phone: +466880739437

Job: Future Retail Associate

Hobby: Polo, Scouting, Worldbuilding, Cosplaying, Photography, Rowing, Nordic skating

Introduction: My name is Velia Krajcik, I am a handsome, clean, lucky, gleaming, magnificent, proud, glorious person who loves writing and wants to share my knowledge and understanding with you.