Questions tagged [conversion]

Conversion between file formats.

Use this tag if your question is about converting between file formats. You should also use one or two tags that reflect either the type of file or problem area (, , , …), or the source and target formats (, , …).

Some common conversion tools:

336 questions
6
votes
3 answers

Convert file with Windows-style EOL to Unix-style EOL without using dos2unix

I use an old server without dos2unix and I would like to convert files containing Windows-style end-of-line (EOL) to Unix-style EOL. I am unfortunately not the admin so I can't install dos2unix. The tr method seems to be the only one that works. cp…
cokedude
  • 1,121
0
votes
1 answer

How to run single command on multiple files to convert file format?

I am trying to convert file format from fa to fq using seqkit on Linux terminal. Command is simple as shown below. seqkit fq2fa Std_metabat2_bin.9_sub.fa -o Std_metabat2_bin.9_sub.fq -j 20 But, I have over 200 files (fa file of metagenome bins)…
JYLee
  • 1
-1
votes
2 answers

How to translate a non sugary syntactic shell (Bash) command into "lower" types of code such as assembly or even machine code?

Please consider: cd ~ cd $HOME I would say that the first command is a possible sugar syntax of the second command, and that the second is less abstract. Just for the sake of demonstrating how commands can become less and less abstract to…