Skip to content
Snippets Groups Projects
Working.md 1.59 KiB
Newer Older
selva's avatar
selva committed
# Working with BiTIA CLI
selva's avatar
selva committed
The three commands that are the core of BiTIA's functionality are:
selva's avatar
selva committed
- run
- submit
selva's avatar
selva committed
- logs
selva's avatar
selva committed

selva's avatar
selva committed


selva's avatar
selva committed
### Bitia run can be employed in following ways:
selva's avatar
selva committed

selva's avatar
selva committed
#### 1. Running commands
selva's avatar
selva committed

selva's avatar
selva committed
```bash
selva's avatar
selva committed
$ bitia run "samtools convert foo.fa#http://example.com/foo.fa"
selva's avatar
selva committed
```
selva's avatar
selva committed
The above code will: 
selva's avatar
selva committed
- Add the given command `samtools run foo.fa#http://example.com/foo.fa` into a pipeline file.
selva's avatar
selva committed
- Extract the current working directory with the pipeline as a zip file that contains a unique hash and send it to the server `public.bitia.link`
- The BiTIA runner in the server will execute the pipeline by: 
    - Installing the given command  `samtools`
    - Downloading the given input file form the link  `http://example.com/foo.fa` and name it as `foo.fa`
    - executing the command `samtools convert foo.fa` 
- Display the resulting output to the user console
selva's avatar
selva committed

selva's avatar
selva committed
#### 2. Running Pipelines
selva's avatar
selva committed

selva's avatar
selva committed
```bash
$ bitia run pipeline.sh
```
selva's avatar
selva committed
for `pipeline.sh`:
```bash
#!/usr/bin/env bash

fastqc *.gz

for file in *_1.fastq.gz
do
   trim_galore --cores 8 --gzip --fastqc --max_n 2 --output_dir Trimmed_Data/ --paired $file ${file%_1.fastq.gz}_2.fastq.gz
done

hisat2-build -p 8 ./Homo_sapiens/UCSC/hg38/Sequence/WholeGenomeFasta/genome.fa index
```

selva's avatar
selva committed
The above code will:
- Extract the current working directory with the `pipeline.sh` as a zip file that contains a unique hash and sent it to the server `public.bitia.link`
selva's avatar
selva committed
- The BiTIA runner in the server will execute the pipeline 
selva's avatar
selva committed
    - Installing the given commands `fastqc`, `trim_galore`,`hisat2` .
    - executing the commands given in the pipeline
selva's avatar
selva committed
- Displays the resulting output to the user console