Skip to content

Commit e08ad6b

Browse files
committed
fix: update command arguments in workflow tests and correct primer file reference
1 parent 0aa08b1 commit e08ad6b

5 files changed

Lines changed: 10 additions & 4 deletions

File tree

.github/.DS_Store

0 Bytes
Binary file not shown.

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
1919
- name: Test container presto-0.7.4:latest runs
2020
run: |
21-
docker run --rm ghcr.io/lewisl23/presto-0.7.4:latest "AssemblePairs.py --help"
21+
docker run --rm ghcr.io/lewisl23/presto-0.7.4:latest AssemblePairs.py --help
2222
echo "Container works"
2323
2424
- name: Pull container igblast-1.21.0:latest from GHCR
@@ -27,5 +27,5 @@ jobs:
2727
2828
- name: Test container igblast-1.21.0:latest runs
2929
run: |
30-
docker run --rm ghcr.io/lewisl23/igblast-1.21.0:latest "igblastn -help"
30+
docker run --rm ghcr.io/lewisl23/igblast-1.21.0:latest igblastn -help
3131
echo "Container works"

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# Raw2AIRR
2-
2+
### #This tool is initially created for MSc dissertation project "BCR_classification_model"
33
Raw2AIRR is a bioinformatic pipeline that is used to process raw illumina reads
44
of B-cell receptor (BCR). The tool will will start from undergoing paired-end
55
assemble, quality-control, and collapse of duplicated reads. Then, the reads
66
undergo alignment and annotation with OGRDB database to transform the reads into machine readable standardised file that represents the adaptive immune receptor repertoire data.
7+
8+
Note: Please configure according to the sequencing method\
9+
1. PRIMERS used for the sequencing should be configured using "presto/Primers.fasta"
10+
2. Sample name should be configured using "/snakeconfig.yaml"
11+
12+
what

Snakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ rule filter:
5252
rule mask_primer:
5353
input:
5454
reads = "presto/presto_output/{sample}_quality-pass.fastq"
55-
primer = "presto/Cowan_CPrimers.fasta"
55+
primer = "presto/Primers.fasta"
5656
output:
5757
pass_file = "presto/presto_output/{sample}_primers-pass.fastq"
5858
container:

0 commit comments

Comments
 (0)