-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Profile file for cgMLST #13
Comments
Hey Lee, I can pull out an example this evening but to unblock you asap the profile file needs to minimally have two lines that looks like:
Which is just a single dummy ST with allele 1 for all loci. |
Ok I bashed it out a bit with those instructions. Thanks for that clarity. Here are the steps I took after the numLoci=$(\ls -f1 *.fasta | wc -l)
(
echo -ne "ST\t";
grep -B 999999 'profile' config.txt | grep -v profile | tail -n +2 | cut -f 1 | tr '\n' '\t';
echo;
) > profile.txt
(for i in `seq 1 $numLoci`; do echo -ne "1\t"; done; echo) >> profile.txt
indexer -c config.txt It seemed to be working but I ran into a segmentation fault. What do you think?
|
I ran \time index -c config.txt
24.62user 6.63system 0:38.31elapsed 81%CPU (0avgtext+0avgdata 7153812maxresident)k
0inputs+0outputs (0major+1767315minor)pagefaults 0swaps
|
Hi, related to #11, could you show me what a profile file should look like for cg/wgMLST? I downloaded the wgMLST scheme from the ChewBBACA website and I want to make a STing database out of it. I basically ran this inside the folder of locus fasta files:
And then I get this error
The text was updated successfully, but these errors were encountered: