File tree 1 file changed +15
-7
lines changed
1 file changed +15
-7
lines changed Original file line number Diff line number Diff line change 6
6
# events but only for the master branch
7
7
on :
8
8
push :
9
- branches : [ actions ]
9
+ branches : [ master, devel ]
10
10
pull_request :
11
- branches : [ actions ]
11
+ branches : [ master, devel ]
12
12
13
13
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
14
14
jobs :
50
50
# Check Bisulfite mode
51
51
- name : Check Bisulphite mode
52
52
run : |
53
- wget https://www.bioinformatics.babraham.ac.uk/projects/fastq_screen/fastq_screen_test_dataset.tar.gz
54
- tar xvzf fastq_screen_test_dataset.tar.gz
55
- ln -s fastq_screen_test_dataset/*.fastq.gz .
56
- # $GITHUB_WORKSPACE/fastq_screen --get_genomes. #Too large to download (or 3h timeout?), may have to work on a solution
57
- # $GITHUB_WORKSPACE/fastq_screen --conf ./FastQ_Screen_Genomes_Bisulfite/fastq_screen.conf --bisulfite *.fastq.gz
53
+ wget https://www.bioinformatics.babraham.ac.uk/projects/bismark/test_data.fastq
54
+ wget https://github.com/FelixKrueger/Bismark/archive/0.22.3.tar.gz
55
+ tar xvzf 0.22.3.tar.gz
56
+ Bismark-0.22.3/bismark --help
57
+ export PATH="~/Bismark-0.22.3:$PATH"
58
+ source ~/.bashrc
59
+
60
+ # $GITHUB_WORKSPACE/fastq_screen --get_genomes --bisulfite #Took too much memory or too long (perhaps use fewer genomes)
61
+
62
+ # Run FastQ Screen
63
+ - name : Run FastQ Screen
64
+ run : |
65
+ #$GITHUB_WORKSPACE/fastq_screen --conf ./FastQ_Screen_Genomes_Bisulfite/fastq_screen.conf --bisulfite *.fastq.gz
You can’t perform that action at this time.
0 commit comments