File tree Expand file tree Collapse file tree 3 files changed +17
-2
lines changed Expand file tree Collapse file tree 3 files changed +17
-2
lines changed Original file line number Diff line number Diff line change 44
44
make -C lib/htslib
45
45
make
46
46
47
+ - name : Run amplisim on public Sars-Cov-2 data
48
+ run : |
49
+ mkdir testdata && cd testdata
50
+ wget https://raw.githubusercontent.com/artic-network/primer-schemes/master/nCoV-2019/V5.3.2/SARS-CoV-2.primer.bed
51
+ wget https://www.ebi.ac.uk/ena/browser/api/fasta/MN908947.3
52
+ sed 's/>ENA|MN908947|MN908947.3 Severe acute respiratory syndrome coronavirus 2 isolate Wuhan-Hu-1, complete genome./>MN908947.3/g' MN908947.3 > MN908947.3.fasta
53
+ cd ..
54
+ ./amplisim -s 479 -o testdata/amplicons.fasta testdata/MN908947.3.fasta testdata/SARS-CoV-2.primer.bed
55
+
56
+ - name : Verify md5sum (macOS)
57
+ if : runner.os == 'macOS'
58
+ run : |
59
+ brew install coreutils
60
+ md5sum testdata/amplicons.fasta | md5sum -c test/sarscov2_s479.macos.md5
Original file line number Diff line number Diff line change 12
12
13
13
14
14
const char * argp_program_version = VERSION ; // defined in Makefile
15
- const char * argp_program_bug_address = "" ;
16
- static char doc [] = "amplisim -- a program to simulate amplicon sequencing data " ;
15
+ const char * argp_program_bug_address = "https://github.com/rki-mf1/amplisim/issues " ;
16
+ static char doc [] = "amplisim -- a program to simulate amplicon sequences from a reference genome " ;
17
17
static char args_doc [] = "REFERENCE PRIMERS" ;
18
18
19
19
static struct argp_option options [] = {
Original file line number Diff line number Diff line change
1
+ 3ce2bb236e611f5d5e569d68b631bd81 testdata/amplicons.fasta
You can’t perform that action at this time.
0 commit comments