Hello, my goal : to download a BED file as desribed here to my directory using linux commands . in the meantine, I am trying to download the wanted file directly in the following way:
my try to download a BED compressed file from the ucsc website:
I go into the table browser(tools>Table Browser):
when I try to click " get output " I see this:
and when I click "get BED" another chrome tb is opened with direct table. wht doesnt it save it on the computer in a gzip BED file ?
it saves is as a text file this way
BED format is plain text. Not sure why you wanted it gzipped, but you do then you need to gzip it yourself.
before the gzip issue- when I try to save it as ".bed" it saves it as "bed.txt" and I want it as "bed"
Choose "all files" under the format drop-down, enclose your file name in quotes "file.bed". That should save it without the
.txt
extension. You can also domv file.bed.txt file.bed
to rename the file you already have.