Skip to content

Commit

Permalink
join notes
Browse files Browse the repository at this point in the history
  • Loading branch information
ktmeaton committed Feb 28, 2020
1 parent 93fd124 commit 22e4e12
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,3 +91,32 @@ nextflow run pipeline.nf \
-with-timeline
-with-dag pipeline.pdf
-with-report

### Join Figuring Out
params.ncbimeta_join_first_final = "MasterFirst"
params.ncbimeta_join_first_uniq = "'BioSampleAccession BioSampleAccessionSecondary BioSampleSRAAccession'"
params.ncbimeta_join_first_accessory = "'Assembly SRA'"
params.ncbimeta_join_first_anchor = "BioSample"

// NCBImetaJoin Second Parameters
params.ncbimeta_join_second_final = "Master"
params.ncbimeta_join_second_uniq = "'BioSampleBioProjectAccession'"
params.ncbimeta_join_second_accessory = "'BioProject'"
params.ncbimeta_join_second_anchor = "MasterFirst"

NCBImetaJoin.py \
--database yersinia_pestis_db.sqlite \
--anchor BioSample \
--accessory "Assembly SRA" \
--final MasterFirst \
--unique "BioSampleAccession BioSampleAccessionSecondary BioSampleSRAAccession"

NCBImetaJoin.py \
--database yersinia_pestis_db.sqlite \
--anchor MasterFirst \
--accessory BioProject \
--final Master \
--unique ${params.ncbimeta_join_second_uniq}

### Perl5 Issues
export PERL5LIB=~/miniconda3/envs/phylo-env/lib/site_perl/5.26.2/

0 comments on commit 22e4e12

Please sign in to comment.