# HG changeset patch # User greg # Date 1543951210 18000 # Node ID b37deda778b9333eddcede48ab7dc2ad8b86b2ab Uploaded diff -r 000000000000 -r b37deda778b9 .shed.yml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.shed.yml Tue Dec 04 14:20:10 2018 -0500 @@ -0,0 +1,11 @@ +name: affy_ids_for_genotyping +owner: greg +description: | + Contains a tool that extracts the Affymetrix ids from a VCF file for genotyping. +homepage_url: https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/corals/affy_ids_for_genotyping +long_description: | + Contains a tool that extracts the Affymetrix ids from a VCF file for genotyping. +remote_repository_url: https://github.com/gregvonkuster/galaxy_tools/tree/master/tools/corals/affy_ids_for_genotyping +type: unrestricted +categories: + - Micro-array Analysis diff -r 000000000000 -r b37deda778b9 affy_ids_for_genotyping.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/affy_ids_for_genotyping.xml Tue Dec 04 14:20:10 2018 -0500 @@ -0,0 +1,32 @@ + + from VCF data + test.head +tr '\t' '\n' < test.head > samples.txt +sed -i 1,9d samples.txt +awk -F'\t' -v OFS='\t' 'NR==0 {print ; next}{print (NR),$0}' samples.txt > '$output' +]]> + + + + + + + + + + + + + + + +**What it does** + +Generates a file that contains the Affymetrix identifiers that will be combined with additional data to +generate the genotype populatiuon information for use as input to the multilocus_genotype tool. This tool +can be used only within a Galaxy instance that includes the complementary corals (stag) database. + + + +