2021-03-31 17:12:39 +00:00
|
|
|
# ClearLabs
|
|
|
|
|
2021-04-13 19:54:07 +00:00
|
|
|
This script converts the FASTA tarball that is downloaded through the ClearLabs
|
|
|
|
web portal into individual and a collective FASTA file using Cygwin.
|
2021-03-31 17:12:39 +00:00
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
To be run in Cygwin
|
|
|
|
|
|
|
|
```bash
|
2021-04-13 19:54:07 +00:00
|
|
|
convert-fastas.sh TARBALL
|
2021-03-31 17:12:39 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
|
|
|
This script requires [Cygwin](https://cygwin.com/install.html).
|
|
|
|
|
|
|
|
1. Download and install Cygwin
|
|
|
|
1. Select "Just Me" when asked who to install for
|
|
|
|
2. Find and add the latest version of the "git" package when prompted
|
|
|
|
3. All other default options will work
|
|
|
|
2. Open the Cygwin console and use the following commands
|
|
|
|
|
2021-04-13 19:54:07 +00:00
|
|
|
```bash
|
2021-04-29 01:27:56 +00:00
|
|
|
git clone https://github.com/MillironX/sc2-sequencing.git
|
|
|
|
cp sc2-sequencing/clearlabs/convert-fastas.sh ~
|
2021-04-13 19:54:07 +00:00
|
|
|
chmod +x convert-fastas.sh
|
|
|
|
```
|
2021-03-31 17:12:39 +00:00
|
|
|
|
|
|
|
3. Press the Win+R on the keyboard
|
|
|
|
4. Type `shell:sendto` and press Enter
|
2021-03-31 17:21:41 +00:00
|
|
|
5. Right-click in the newly opened window, and click "New | Shortcut..."
|
|
|
|
6. Type `C:\cygwin64\bin\bash.exe` and click Next
|
|
|
|
7. Type `Convert FASTA Tarball` or something else memorable and click Finish
|
|
|
|
8. Right-click the newly created shortcut and click Properties
|
2021-04-13 19:54:07 +00:00
|
|
|
9. In the Target textbox, add a space and `--login convert-fastas.sh` to the
|
|
|
|
existing text
|
2021-03-31 17:21:41 +00:00
|
|
|
10. Click OK
|
|
|
|
|
2021-04-13 19:54:07 +00:00
|
|
|
An item will now be added to the Right click | Send to menu for FASTA tarballs.
|
|
|
|
Once clicked, the extracted tarballs can be found in
|
|
|
|
`C:\cygwin64\home\<USERNAME>`.
|