Skip to content

Commit

Permalink
revert back to plain eager test cmd
Browse files Browse the repository at this point in the history
  • Loading branch information
ktmeaton committed Jul 21, 2020
1 parent 806c583 commit 6f2fc88
Showing 1 changed file with 20 additions and 8 deletions.
28 changes: 20 additions & 8 deletions .github/workflows/pipeline_sra.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,14 +99,26 @@ jobs:
- name: example eager
shell: bash -l {0}
run: |
conda activate ${PHYLO_CONDA_ENV}
nextflow run ktmeaton/plague-phylogeography \
--skip_assembly_download \
--max_datasets_assembly 1 \
--sqlite_select_command_sra "\"SELECT BioSampleAccession,SRARunAccession,SRALibraryLayout,SRAFileURL FROM Master WHERE (SRARunAccession = 'SRR1048902' OR SRARunAccession = 'SRR1048905')\"" \
--skip_outgroup_download \
--outdir test \
-resume
conda activate ${EAGER_CONDA_ENV}
mkdir -p test/eager
nextflow -C ~/.nextflow/assets/nf-core/eager/nextflow.config \
run nf-core/eager \
-r ${EAGER_NF_REV} \
--input test/sqlite_import/metadata_sra_eager.tsv \
--outdir test/eager \
--fasta test/reference_genome/GCF_000009065.1_ASM906v1_genomic.fna \
--clip_readlength 35 \
--preserve5p \
--mergedonly \
--mapper bwaaln \
--bwaalnn 0.01 \
--bwaalnl 16 \
--run_bam_filtering \
--bam_mapping_quality_threshold 30 \
--bam_discard_unmapped \
--bam_unmapped_type discard \
--max_memory "6.GB" \
--max_cpus 2
conda deactivate
- name: artifact sqlite-import
Expand Down

0 comments on commit 6f2fc88

Please sign in to comment.