In the terminal I ran:
java -jar ../Programs/GenomeAnalysisTK.jar -R ../Programs/human_g1k_v37_decoy.fasta -T SelectVariants --variant Analysis/1.GATK_filtering/1.Only_Indels/vcf_Indels.vcf -select "FILTER == 'PASS'" -o Analysis/1.GATK_filtering/2.Only_Pass/vcf_Indels-Passes.vcf
Which gave me a file with this number of lines
204 vcf_Indels-Passes.vcf
I found this number very low, so I tried doing:
java -jar ../Programs/GenomeAnalysisTK.jar -R ../Programs/human_g1k_v37_decoy.fasta -T SelectVariants --variant Analysis/1.GATK_filtering/1.Only_Indels/vcf_Indels.vcf -select 'vc.isNotFiltered()' -o Analysis/1.GATK_filtering/3.Only_Pass/vcf_Indels-Passes.vcf
Which gave me a file with this number of lines
29531 vcf_Indels-Passes.vcf
I don't know which of these filters is correct or if they're both wrong, next I will be applying statistical test to the resulting PASS file.