Skip to content

Commit

Permalink
revise typos
Browse files Browse the repository at this point in the history
  • Loading branch information
guoyingwei6 committed Aug 26, 2024
1 parent 241735a commit a9bdf85
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/Breed_identifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def breed_classifier(genotype_array):
return breed_prediction

if __name__ == '__main__':
'''python3 Breed_identifier.py attachments/genotypes.txt
'''python3 Breed_identifier.py attachments/genotypes_for_Breed_identifier.txt
The argument is the genotype file.
You can find the results in the attachments folder named breed_results.csv.'''
genotype_file = sys.argv[1] # 命令行第一个参数是基因型文件
Expand Down
2 changes: 1 addition & 1 deletion modules/GBC_estimator.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def GBC_estimator(genotypes, confidence=0.05):
return individual_contributions_rounded

if __name__ == '__main__':
'''python3 GBC_estimator.py attachments/genotypes.txt 0.05
'''python3 GBC_estimator.py attachments/genotypes_for_GBC_extimator.txt 0.05
The first argument is the genotype file, and the second argument is the confidence level.
You can find the results in the attachments folder named gbc_results.csv.'''
genotype_file = sys.argv[1] # 命令行第一个参数是基因型文件
Expand Down

0 comments on commit a9bdf85

Please sign in to comment.