You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* refactor map_habitat.py
delete unnecessary code repetition
fix readability
makes code cleaner
* refactor filter_length.py
minor changes, improve code readability
* fix problem with merging step
* fix format of the table
previously, there was a column separated by multiple spaces
this occasionated one of the values as NA, which breaks the
merge procedure by PANDAS.
* refactor and fix column renaming
column names were wrongly associated before to float valued columns
now it is fixed by always fixing the position of these columns as the first
two.
* fix variable naming
* refactor map_quality.py
fix some internal functions, reduce overworking
improved readability
* fix error in the loop to include only small orfs
The loop before would include all sequences regardless the result
of the tests before (length and if was already seen), so now it loops
first in the length, if condition met, then goes to the seen test, and if
not seen before, then it is added to our dictionary, avoiding overwritting
and conflicts.
* refactor and enhance the deeplca function
Improved readability of the code, and reduce the complexity and
time to compute LCA for each smorf.
* Update map_taxonomy.py
* Update map_taxonomy.py
* Update map_taxonomy.py
* fix error in format of one variable
sys.stderr.write("GMSC-mapper Error: Input sequences are all more than 303nt or 100aa,which will be filtered. 1.If you don't want to filter,please use --nofilter flag. 2.Please check if your input is contigs,which should use -i not --nt-genes or --aa-genes as input.\n")
34
+
sys.stderr.write(message_error_all_long)
18
35
sys.exit(1)
19
36
else:
20
37
iflonger_exist_flag:
21
-
print("GMSC-mapper Warning: Input has seqences more than 303nt or 100aa,which will be filtered.If you don't want to filter,please use --nofilter flag.\n")
0 commit comments