diff --git a/.DS_Store b/.DS_Store
index c4d4053..47b466d 100644
Binary files a/.DS_Store and b/.DS_Store differ
diff --git a/.gitignore b/.gitignore
index c5c192a..7428e9a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -9,6 +9,7 @@ __pycache__/
# Distribution / packaging
.Python
env/
+build/
develop-eggs/
dist/
downloads/
diff --git a/README.md b/README.md
index c3aaa47..8e57e63 100644
--- a/README.md
+++ b/README.md
@@ -83,6 +83,14 @@ By default, the output graphs have a DPI of 150. However, the user can change th
$ metapredict-graph-disorder /Users/thisUser/Desktop/interestingProteins.fasta /Users/thisUser/Desktop/DisorderGraphsFolder/ -D 300
+**Specify the lines across a graph:**
+``-lines`` / ``--line_intervals``
+
+By default, the graphs have horizontal dashed lines at intervals of 0.2 from 0 to 1. Now, can specify the location of the dashed lines by using the ``-lines`` / ``--line_intervals`` argument
+
+ $ metapredict-graph-disorder /Users/thisUser/Desktop/interestingProteins.fasta /Users/thisUser/Desktop/DisorderGraphsFolder/ -lines 0.1 0.2 0.3 0.4 0.5
+
+
**Remove non-alphabetic characters from file names -**
By default, the output files contain characters that are non-alphabetic (for example, *predicted_disorder_sp|Q8N6T3|.png*). This is not a problem on some operating systems, but others do not allow files to have names that contain certain characters. To get around this, you can add the ``--remove_characters`` flag. This will remove all non-alphabetic characters from the .fasta header when saving the file. The previous example with the header >sp|Q8N6T3|ARFG1_HUMAN would now save as *predicted_disorder_spQ8N726AR.png*.
@@ -137,6 +145,14 @@ By default, the output graph has a DPI of 150. However, the user can change the
meta.graph_disorder("DAPPTSQEHTQAEDKERD", DPI=300)
+**Specify the lines across a graph -**
+By default, the graphs have horizontal dashed lines at intervals of 0.2 from 0 to 1. Now, can specify the location of the dashed lines by using specifying *line_intervals*
+
+**Example**
+
+ meta.graph_disorder("DAPPTSQEHTQAEDKERD", line_intervals = [0.1, 0.2, 0.3]
+
+
### Calculating Percent Disorder
The ``percent_disorder`` function will return the percent of residues in a sequence that have predicted consensus disorder values of 50% or more (as a decimal value).
@@ -263,6 +279,11 @@ https://github.com/idptools/metapredict/issues
### Recent changes
This section is a log of recent changes with metapredict. My hope is that as I change things, this section can help you figure out why a change was made and if it will break any of your current work flows. The first major changes were made for the 0.56 release, so tracking will start there. Reasons are not provided for bug fixes for because the reason can assumed to be fixing the bug...
+#### V0.60
+Change:
+Added functionality to specify the horizontal lines that appear across the graphs rather than only having the option of having the dashed lines appear at intervals of 0.2.
+ This functionality is in both Python and the command line.
+
#### V0.58
Change:
Updated the network with a newly trained network (using the same dataset as the original) that is slightly more accurate.
diff --git a/docs/_build/doctrees/changes.doctree b/docs/_build/doctrees/changes.doctree
index d18f00f..2c1487c 100644
Binary files a/docs/_build/doctrees/changes.doctree and b/docs/_build/doctrees/changes.doctree differ
diff --git a/docs/_build/doctrees/environment.pickle b/docs/_build/doctrees/environment.pickle
index da2bc89..0904725 100644
Binary files a/docs/_build/doctrees/environment.pickle and b/docs/_build/doctrees/environment.pickle differ
diff --git a/docs/_build/doctrees/usage/command-line.doctree b/docs/_build/doctrees/usage/command-line.doctree
index b56b35a..aa36b00 100644
Binary files a/docs/_build/doctrees/usage/command-line.doctree and b/docs/_build/doctrees/usage/command-line.doctree differ
diff --git a/docs/_build/doctrees/usage/using-in-python.doctree b/docs/_build/doctrees/usage/using-in-python.doctree
index 5169fd4..078aa6a 100644
Binary files a/docs/_build/doctrees/usage/using-in-python.doctree and b/docs/_build/doctrees/usage/using-in-python.doctree differ
diff --git a/docs/_build/html/_sources/changes.rst.txt b/docs/_build/html/_sources/changes.rst.txt
index 853266f..083af1c 100644
--- a/docs/_build/html/_sources/changes.rst.txt
+++ b/docs/_build/html/_sources/changes.rst.txt
@@ -5,6 +5,13 @@ About
------
This section is a log of recent changes with metapredict. My hope is that as I change things, this section can help you figure out why a change was made and if it will break any of your current work flows. The first major changes were made for the 0.56 release, so tracking will start there.
+V.060
+------
+
+Change:
+Added functionality to specify the horizontal lines that appear across the graphs rather than only having the option of having the dashed lines appear at intervals of 0.2.
+ This functionality is in both Python and the command line.
+
V0.58
------
diff --git a/docs/_build/html/_sources/usage/command-line.rst.txt b/docs/_build/html/_sources/usage/command-line.rst.txt
index 6bcaf5a..e1e5169 100644
--- a/docs/_build/html/_sources/usage/command-line.rst.txt
+++ b/docs/_build/html/_sources/usage/command-line.rst.txt
@@ -72,6 +72,17 @@ By default, the output files have a DPI of 150. However, the user can change the
$ metapredict-graph-disorder /Users/thisUser/Desktop/interestingProteins.fasta /Users/thisUser/Desktop/DisorderGraphsFolder/ -D 300
+
+**Specify the lines across a graph:**
+``-lines`` / ``--line_intervals``
+
+By default, the graphs have horizontal dashed lines at intervals of 0.2 from 0 to 1. Now, can specify the location of the dashed lines by using the ``-lines`` / ``--line_intervals`` argument
+
+.. code-block:: bash
+
+ $ metapredict-graph-disorder /Users/thisUser/Desktop/interestingProteins.fasta /Users/thisUser/Desktop/DisorderGraphsFolder/ -lines 0.1 0.2 0.3 0.4 0.5
+
+
**Remove non-alphabetic characters from file name:**
``--remove_characters``
diff --git a/docs/_build/html/_sources/usage/using-in-python.rst.txt b/docs/_build/html/_sources/usage/using-in-python.rst.txt
index 6a88246..8652de7 100644
--- a/docs/_build/html/_sources/usage/using-in-python.rst.txt
+++ b/docs/_build/html/_sources/usage/using-in-python.rst.txt
@@ -75,6 +75,18 @@ By default, the output graph has a DPI of 150. However, the user can change the
meta.graph_disorder("DAPPTSQEHTQAEDKERD", DPI=300)
+**Specify the lines across a graph:**
+``-lines`` / ``--line_intervals``
+
+By default, the graphs have horizontal dashed lines at intervals of 0.2 from 0 to 1. Now, can specify the location of the dashed lines by using specifying *line_intervals*
+
+**Example**
+
+.. code-block:: python
+
+ meta.graph_disorder("DAPPTSQEHTQAEDKERD", line_intervals = [0.1, 0.2, 0.3])
+
+
Calculating Percent Disorder:
-----------------------------
diff --git a/docs/_build/html/changes.html b/docs/_build/html/changes.html
index ddf379b..8e40ba0 100644
--- a/docs/_build/html/changes.html
+++ b/docs/_build/html/changes.html
@@ -89,6 +89,7 @@
Metapredict isn’t working!
Recent changes
- About
+- V.060
- V0.58
- V0.57
- V0.56
@@ -164,6 +165,14 @@ Recent changes
This section is a log of recent changes with metapredict. My hope is that as I change things, this section can help you figure out why a change was made and if it will break any of your current work flows. The first major changes were made for the 0.56 release, so tracking will start there.
+
+
V.060
+
Change:
+Added functionality to specify the horizontal lines that appear across the graphs rather than only having the option of having the dashed lines appear at intervals of 0.2.
+
+This functionality is in both Python and the command line.
+
+
V0.58
Change:
diff --git a/docs/_build/html/index.html b/docs/_build/html/index.html
index 2641393..3edae9b 100644
--- a/docs/_build/html/index.html
+++ b/docs/_build/html/index.html
@@ -194,6 +194,7 @@
Welcome to metapredict’s documentation!Recent changes
- About
+- V.060
- V0.58
- V0.57
- V0.56
diff --git a/docs/_build/html/searchindex.js b/docs/_build/html/searchindex.js
index 921bc96..6087509 100644
--- a/docs/_build/html/searchindex.js
+++ b/docs/_build/html/searchindex.js
@@ -1 +1 @@
-Search.setIndex({docnames:["api","changes","getting_started","index","usage/acknowledgements","usage/command-line","usage/troubleshooting","usage/using-in-python"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":3,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":2,"sphinx.domains.rst":2,"sphinx.domains.std":1,"sphinx.ext.intersphinx":1,"sphinx.ext.viewcode":1,sphinx:56},filenames:["api.rst","changes.rst","getting_started.rst","index.rst","usage/acknowledgements.rst","usage/command-line.rst","usage/troubleshooting.rst","usage/using-in-python.rst"],objects:{metapredict:{brnn_architecture:[0,0,0,"-"],encode_sequence:[0,0,0,"-"],meta_graph:[0,0,0,"-"],meta_predict_disorder:[0,0,0,"-"]}},objnames:{"0":["py","module","Python module"]},objtypes:{"0":"py:module"},terms:{"000":[5,7],"073396":7,"094578":7,"102596":7,"140863":7,"150":[5,7],"160754":7,"27831":7,"286987":7,"29411764705882354":7,"300":[5,7],"327464":7,"336405":7,"351597":7,"351955":7,"354656":7,"356424":7,"365483":7,"379971":7,"407988":7,"432979":7,"4411764705882353":7,"456596":7,"476576":7,"506673":7,"588148":7,"603413":7,"687313":7,"75202":7,"845275":7,"915786":7,"958249":7,"break":1,"default":[5,6,7],"final":7,"function":[0,1,7],"import":7,"long":1,"return":[5,7],"short":1,"true":7,"try":1,"while":[1,6],Added:1,For:[2,5,6,7],The:[1,2,5,7],Then:6,There:7,These:2,abil:2,abl:1,about:3,accid:[],accur:1,accuraci:1,acid:[5,7],acknowledg:3,across:7,actual:7,add:[5,7],added:5,adding:7,addit:[4,5,7],addition:[5,7],after:7,all:[0,1,2,5,7],allow:[5,7],alphabet:[5,7],also:[4,7],alwai:1,amino:[5,7],amount:7,analyz:1,ani:[1,2,7],annoi:1,api:0,appear:[],approxim:2,arfg1_human:[5,7],argument:7,around:[2,5,7],associ:[5,7],auto:1,automat:[5,7],avail:2,avoid:6,awesom:4,backend:0,base:[0,4],bash:[],becaus:2,befor:7,behavior:7,being:1,below:[],better:1,between:[1,5,7],bidirect:2,bio:4,bit:2,blank:7,block:[],brnn:[],brnn_architectur:[3,4],bug:1,bunch:[],calcul:3,call:7,can:[1,2,5,6,7],cannot:[],cap:1,cell:[5,7],certain:[5,7],chanc:2,chang:[3,5,7],charact:[1,5,7],check:4,choos:7,click:7,clone:2,close:7,cms:4,code:[0,2,4],column:[],com:[2,4,6],comma:1,command:[1,3,6,7],commant:[],comment:[],common:6,complet:1,comput:4,concern:[],conda:6,consensu:[2,5,7],consid:7,considr:[],contain:[2,5,7],content:3,conveni:6,cookiecutt:4,cool:4,coolsequ:7,copi:2,correspond:[1,7],could:1,crash:1,creat:[4,6],creation:2,credit:0,csv:[1,5,7],current:[1,5],cutoff:7,dan:[0,4],dapptsqehtqaedkerd:7,daptsqehtqaedkerdskthpqkkqsp:[],data:2,databas:[2,4],dataset:[1,3],decid:[],decim:[1,7],decreas:[],dedic:[5,7],desktop:[5,7],detail:[],determin:2,develop:[],development:[],dictionari:7,differ:[2,6],directli:7,directori:[1,2],directroi:5,disabl:7,discern:1,disord:[0,1,2,3],disorder_:[],disordergraphsfold:5,disorderpredict:5,displai:[],doc:6,doesn:[],don:7,done:6,dpi:[1,5,7],drawback:2,dsspeapaeppkdvphdwlysyvflthhpadflr:7,due:1,each:[1,5,7],easili:7,elsewher:7,encode_sequ:[3,4],end:[],enough:1,environ:6,equal:7,everi:[5,7],everyth:7,exampl:[3,5,7],extens:[5,6,7],fals:7,fasta:[1,2,3,5],feedback:6,figur:1,file:[1,2,3,5],file_nam:7,filenam:7,filepath:7,find:1,first:[1,5,7],fix:1,flag:[1,5],flage:[],flexibl:7,flow:1,folder:[2,5,7],folder_of_cool_result:[],folder_of_seq:[],folderforgraph:7,follow:[5,7],fortun:2,found:2,from:[0,1,2,3,6],gain:2,gener:[1,3,4,5],get:[3,5,7],ghpgkqrnpgehhssrnvkrnwnnspsgpnegresqeerktpprrggqqsgeshnqdetnkpnpsdnhheeekaddnahrgndsspeapaeppkdvphdwlysyvflthhpadflrakrvlrenfvqcekawhrrrlahpynrinmqwldvfdgdcwlapqlcfgfqfghdrpvwkifwyhergdlryklilkdhanvlnkpahsrnarcessapshdphgnansydkkvttpdpteikssqesgnsnpdhsphmpgrdmqeqpgeepgghpekrlirskgktdykdnrsprnnpstdpewesahfqwshdpneqwlhnlgwpmrwmwqlpnpgiepfslntrkkapswinllynadpcktqdderdcehhmyqiqpiapvpkiamhyctcfprvhripc:7,git:2,github:[2,4,6],give:[2,7],given:[2,7],good:7,got:2,graph:[0,1,3],graph_disord:7,graph_disorder_fasta:7,greater:[5,7],griffith:[0,4],half:2,handl:[],has:[2,6,7],have:[1,5,6,7],haven:6,header:[1,5,7],help:[1,2],henc:2,here:[],higher:[5,7],holehous:0,hope:1,hopefulli:[],how:3,howev:[5,7],html:[0,6],http:[0,2,4,6],ideal:[],identifi:[5,7],idp:[0,2,4],idptool:[0,2,4,6],idr:0,immedi:7,importantli:7,improv:1,inabl:1,includ:2,increas:[],index:[2,6],individu:7,info:6,inform:0,input:[5,7],instal:[3,5,6],instead:[1,2,7],integ:7,interest:2,interesting_protein:[],interestingprotein:5,isn:[3,7],issu:3,just:[1,2],keep:1,kei:7,lab:0,larg:[],latest:[0,6],learn:[0,4],least:[5,7],less:[5,7],licens:[],like:[4,6,7],likelihood:2,line:[1,3,7],list:7,local:2,locat:[5,7],log:1,look:7,lot:7,luck:2,machin:[0,4],maco:[],made:[1,3,6,7],madeupprotein:7,major:[1,2],make:1,manag:1,maximum:7,meta:[0,2,7],meta_graph:3,meta_predict_disord:3,metapredict:[1,4],might:2,mind:7,mit:[],mobidb:[2,4],modifi:2,modul:3,molecular:4,molssi:4,more:[0,1,5,6,7],multipl:1,must:7,my_cool_fil:[],my_cool_output_nam:[],my_env:6,my_predict:7,mycoolpredict:5,name:[1,2,5,6,7],navig:2,necessari:1,need:7,neg:[5,7],network:[1,2,4],neural:2,newli:1,next:7,no_norm:5,non:[5,7],nonexist:[],normal:[5,7],normali:[],now:[1,5,7],number:[1,7],o43150:[],obtain:2,occassion:[1,6],onc:[5,6,7],one:7,onli:[1,2,7],open:7,oper:[5,7],option:7,order:7,org:4,origin:[1,4,7],other:[2,5,6,7],ouput_nam:[],out:[1,4,7],output:[1,5,7],output_nam:7,output_path:7,overwrit:1,own:6,pab1:[],packag:2,page:6,paramet:7,parrot:[0,2,4],partli:0,path:[5,7],percent:[2,3],percent_disord:7,pip:2,place:1,pleas:6,plot:7,png:[5,7],possibl:2,predict:[0,1,2,3],predict_disord:7,predict_disorder_fasta:7,predicted_:[],predicted_disord:[],predicted_disorder_:[5,7],predicted_disorder_sp:[5,7],predicted_disorder_spq8n726ar:[5,7],predicted_disorder_valu:7,predicted_valu:[],predictor:[0,1,2,4,5,7],pretti:2,previou:[5,7],previous:[1,2],primari:[],problem:[2,5,6,7],project:[4,6],properli:2,protein:[1,2,5,7],proteom:2,pull:1,pypi:[2,4],pytest:2,python:[2,3,4],q8n6t3:[5,7],question:[],quickli:2,quickstart:[],rais:[],raw:[5,7],read:[],readabl:1,readthedoc:0,reason:[1,7],recent:3,reciev:6,recommend:[5,6,7],recurr:2,reduc:1,reflect:1,reinstal:2,releas:1,rememb:1,remov:[5,7],remove_charact:[5,7],replac:[5,6,7],report:3,repositori:2,requir:[],residu:[2,5,7],resolut:[5,7],result:[1,7],risk:6,row:[5,7],run:[2,5,7],same:1,save:[1,5,7],scenario:1,scienc:4,score:2,search:[],second:7,section:[1,6],see:[0,2,4,6],sequec:[],sequenc:[2,5,7],sequencec:2,sequenti:[],set:[2,6],should:[0,1,7],show:7,shown:[],similar:[],simpli:[5,6,7],singl:[],six:1,slightli:[1,5,7],some:[1,4,5,7],someth:7,sourc:2,space:[1,5,7],specif:[0,7],specifi:[1,5,7],spend:[],start:[1,3],still:7,strict:7,string:7,stuff:4,subsequ:[5,7],sure:2,system:[5,7],tab:1,take:[5,7],team:4,test:[3,6],test_unlabeled_data:0,than:[2,5,6,7],thank:4,thei:2,them:[6,7],therefor:[2,5,7],thes:[],thi:[0,1,2,4,5,6,7],thing:[1,2],thisus:[5,7],through:2,time:7,titl:[1,5,7],tool:[0,4],tough:2,track:1,train:[1,2,4],train_network:0,tri:2,two:7,type:[],typic:[2,5,7],unadvis:[],under:[],unipd:4,uniprot:5,uniqu:[1,5,7],unit:2,updat:1,usag:[5,7],use:[1,6,7],used:[2,4],useful:3,user:[1,5,6,7],uses:[2,7],using:[1,4,6,7],vallu:[],valu:[0,1,2,5,7],veri:[4,7],version:[3,4],view:7,wai:[1,2],want:[5,7],warn:[5,7],were:[1,2],what:[3,7],whatev:6,when:[1,5,7],where:[5,6,7],wherev:[5,7],whether:[],which:[1,5,7],whole:[],why:[1,3],within:[2,5,6,7],without:7,work:[1,2,3,7],workaround:6,would:[2,4,5,7],written:4,you:[1,2,5,6,7],your:[1,2,5,6,7]},titles:["Module Documentation","Recent changes","Getting Started with metapredict","Welcome to metapredict\u2019s documentation!","Acknowledgements","metapredict from the command-line","Metapredict isn\u2019t working!","metapredict in Python"],titleterms:{"function":[],about:1,acid:[],acknowledg:4,amino:[],api:[],brnn_architectur:0,calcul:7,chang:1,command:5,contain:[],dataset:2,disord:[5,7],document:[0,3],encod:[],encode_sequ:0,exampl:2,fasta:7,file:7,from:[5,7],gener:7,get:2,graph:[5,7],how:2,indic:[],instal:2,isn:6,issu:6,line:5,made:2,meta_graph:0,meta_predict_disord:0,metapredict:[2,3,5,6,7],modul:0,numer:[],percent:7,predict:[5,7],python:[6,7],quickstart:[],recent:1,report:6,start:2,string:[],tabl:[],test:2,thi:[],useful:2,vector:[],version:6,welcom:3,what:2,why:2,work:6}})
\ No newline at end of file
+Search.setIndex({docnames:["api","changes","getting_started","index","usage/acknowledgements","usage/command-line","usage/troubleshooting","usage/using-in-python"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":3,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":2,"sphinx.domains.rst":2,"sphinx.domains.std":1,"sphinx.ext.intersphinx":1,"sphinx.ext.viewcode":1,sphinx:56},filenames:["api.rst","changes.rst","getting_started.rst","index.rst","usage/acknowledgements.rst","usage/command-line.rst","usage/troubleshooting.rst","usage/using-in-python.rst"],objects:{metapredict:{brnn_architecture:[0,0,0,"-"],encode_sequence:[0,0,0,"-"],meta_graph:[0,0,0,"-"],meta_predict_disorder:[0,0,0,"-"]}},objnames:{"0":["py","module","Python module"]},objtypes:{"0":"py:module"},terms:{"000":[5,7],"060":3,"073396":7,"094578":7,"102596":7,"140863":7,"150":[5,7],"160754":7,"27831":7,"286987":7,"29411764705882354":7,"300":[5,7],"327464":7,"336405":7,"351597":7,"351955":7,"354656":7,"356424":7,"365483":7,"379971":7,"407988":7,"432979":7,"4411764705882353":7,"456596":7,"476576":7,"506673":7,"588148":7,"603413":7,"687313":7,"75202":7,"845275":7,"915786":7,"958249":7,"break":1,"default":[5,6,7],"final":7,"function":[0,1,7],"import":7,"long":1,"return":[5,7],"short":1,"true":7,"try":1,"while":[1,6],Added:1,For:[2,5,6,7],The:[1,2,5,7],Then:6,There:7,These:2,abil:2,abl:1,about:3,accid:[],accur:1,accuraci:1,acid:[5,7],acknowledg:3,across:[1,5,7],actual:7,add:[5,7],added:5,adding:7,addit:[4,5,7],addition:[5,7],after:7,all:[0,1,2,5,7],allow:[5,7],alphabet:[5,7],also:[4,7],alwai:1,amino:[5,7],amount:7,analyz:1,ani:[1,2,7],annoi:1,api:0,appear:1,approxim:2,arfg1_human:[5,7],argument:[5,7],around:[2,5,7],associ:[5,7],auto:1,automat:[5,7],avail:2,avoid:6,awesom:4,backend:0,base:[0,4],bash:[],becaus:2,befor:7,behavior:7,being:1,below:[],better:1,between:[1,5,7],bidirect:2,bio:4,bit:2,blank:7,block:[],both:1,brnn:[],brnn_architectur:[3,4],bug:1,bunch:[],calcul:3,call:7,can:[1,2,5,6,7],cannot:[],cap:1,cell:[5,7],certain:[5,7],chanc:2,chang:[3,5,7],charact:[1,5,7],check:4,choos:7,click:7,clone:2,close:7,cms:4,code:[0,2,4],column:[],com:[2,4,6],comma:1,command:[1,3,6,7],commant:[],comment:[],common:6,complet:1,comput:4,concern:[],conda:6,consensu:[2,5,7],consid:7,considr:[],contain:[2,5,7],content:3,conveni:6,cookiecutt:4,cool:4,coolsequ:7,copi:2,correspond:[1,7],could:1,crash:1,creat:[4,6],creation:2,credit:0,csv:[1,5,7],current:[1,5],cutoff:7,dan:[0,4],dapptsqehtqaedkerd:7,daptsqehtqaedkerdskthpqkkqsp:[],dash:[1,5,7],data:2,databas:[2,4],dataset:[1,3],decid:[],decim:[1,7],decreas:[],dedic:[5,7],desktop:[5,7],detail:[],determin:2,develop:[],development:[],dictionari:7,differ:[2,6],directli:7,directori:[1,2],directroi:5,disabl:7,discern:1,disord:[0,1,2,3],disorder_:[],disordergraphsfold:5,disorderpredict:5,displai:[],doc:6,doesn:[],don:7,done:6,dpi:[1,5,7],drawback:2,dsspeapaeppkdvphdwlysyvflthhpadflr:7,due:1,each:[1,5,7],easili:7,elsewher:7,encode_sequ:[3,4],end:[],enough:1,environ:6,equal:7,everi:[5,7],everyth:7,exampl:[3,5,7],extens:[5,6,7],fals:7,fasta:[1,2,3,5],feedback:6,figur:1,file:[1,2,3,5],file_nam:7,filenam:7,filepath:7,find:1,first:[1,5,7],fix:1,flag:[1,5],flage:[],flexibl:7,flow:1,folder:[2,5,7],folder_of_cool_result:[],folder_of_seq:[],folderforgraph:7,follow:[5,7],fortun:2,found:2,from:[0,1,2,3,6],gain:2,gener:[1,3,4,5],get:[3,5,7],ghpgkqrnpgehhssrnvkrnwnnspsgpnegresqeerktpprrggqqsgeshnqdetnkpnpsdnhheeekaddnahrgndsspeapaeppkdvphdwlysyvflthhpadflrakrvlrenfvqcekawhrrrlahpynrinmqwldvfdgdcwlapqlcfgfqfghdrpvwkifwyhergdlryklilkdhanvlnkpahsrnarcessapshdphgnansydkkvttpdpteikssqesgnsnpdhsphmpgrdmqeqpgeepgghpekrlirskgktdykdnrsprnnpstdpewesahfqwshdpneqwlhnlgwpmrwmwqlpnpgiepfslntrkkapswinllynadpcktqdderdcehhmyqiqpiapvpkiamhyctcfprvhripc:7,git:2,github:[2,4,6],give:[2,7],given:[2,7],good:7,got:2,graph:[0,1,3],graph_disord:7,graph_disorder_fasta:7,greater:[5,7],griffith:[0,4],half:2,handl:[],has:[2,6,7],have:[1,5,6,7],haven:6,header:[1,5,7],help:[1,2],henc:2,here:[],higher:[5,7],holehous:0,hope:1,hopefulli:[],horizont:[1,5,7],how:3,howev:[5,7],html:[0,6],http:[0,2,4,6],ideal:[],identifi:[5,7],idp:[0,2,4],idptool:[0,2,4,6],idr:0,immedi:7,importantli:7,improv:1,inabl:1,includ:2,increas:[],index:[2,6],individu:7,info:6,inform:0,input:[5,7],instal:[3,5,6],instead:[1,2,7],integ:7,interest:2,interesting_protein:[],interestingprotein:5,interv:[1,5,7],isn:[3,7],issu:3,just:[1,2],keep:1,kei:7,lab:0,larg:[],latest:[0,6],learn:[0,4],least:[5,7],less:[5,7],licens:[],like:[4,6,7],likelihood:2,line:[1,3,7],line_interv:[5,7],list:7,local:2,locat:[5,7],log:1,look:7,lot:7,luck:2,machin:[0,4],maco:[],made:[1,3,6,7],madeupprotein:7,major:[1,2],make:1,manag:1,maximum:7,meta:[0,2,7],meta_graph:3,meta_predict_disord:3,metapredict:[1,4],might:2,mind:7,mit:[],mobidb:[2,4],modifi:2,modul:3,molecular:4,molssi:4,more:[0,1,5,6,7],multipl:1,must:7,my_cool_fil:[],my_cool_output_nam:[],my_env:6,my_predict:7,mycoolpredict:5,name:[1,2,5,6,7],navig:2,necessari:1,need:7,neg:[5,7],network:[1,2,4],neural:2,newli:1,next:7,no_norm:5,non:[5,7],nonexist:[],normal:[5,7],normali:[],now:[1,5,7],number:[1,7],o43150:[],obtain:2,occassion:[1,6],onc:[5,6,7],one:7,onli:[1,2,7],open:7,oper:[5,7],option:[1,7],order:7,org:4,origin:[1,4,7],other:[2,5,6,7],ouput_nam:[],out:[1,4,7],output:[1,5,7],output_nam:7,output_path:7,overwrit:1,own:6,pab1:[],packag:2,page:6,paramet:7,parrot:[0,2,4],partli:0,path:[5,7],percent:[2,3],percent_disord:7,pip:2,place:1,pleas:6,plot:7,png:[5,7],possibl:2,predict:[0,1,2,3],predict_disord:7,predict_disorder_fasta:7,predicted_:[],predicted_disord:[],predicted_disorder_:[5,7],predicted_disorder_sp:[5,7],predicted_disorder_spq8n726ar:[5,7],predicted_disorder_valu:7,predicted_valu:[],predictor:[0,1,2,4,5,7],pretti:2,previou:[5,7],previous:[1,2],primari:[],problem:[2,5,6,7],project:[4,6],properli:2,protein:[1,2,5,7],proteom:2,pull:1,pypi:[2,4],pytest:2,python:[1,2,3,4],q8n6t3:[5,7],question:[],quickli:2,quickstart:[],rais:[],rather:1,raw:[5,7],read:[],readabl:1,readthedoc:0,reason:[1,7],recent:3,reciev:6,recommend:[5,6,7],recurr:2,reduc:1,reflect:1,reinstal:2,releas:1,rememb:1,remov:[5,7],remove_charact:[5,7],replac:[5,6,7],report:3,repositori:2,requir:[],residu:[2,5,7],resolut:[5,7],result:[1,7],risk:6,row:[5,7],run:[2,5,7],same:1,save:[1,5,7],scenario:1,scienc:4,score:2,search:[],second:7,section:[1,6],see:[0,2,4,6],sequec:[],sequenc:[2,5,7],sequencec:2,sequenti:[],set:[2,6],should:[0,1,7],show:7,shown:[],similar:[],simpli:[5,6,7],singl:[],six:1,slightli:[1,5,7],some:[1,4,5,7],someth:7,sourc:2,space:[1,5,7],specif:[0,7],specifi:[1,5,7],spend:[],start:[1,3],still:7,strict:7,string:7,stuff:4,subsequ:[5,7],sure:2,system:[5,7],tab:1,take:[5,7],team:4,test:[3,6],test_unlabeled_data:0,than:[1,2,5,6,7],thank:4,thei:2,them:[6,7],therefor:[2,5,7],thes:[],thi:[0,1,2,4,5,6,7],thing:[1,2],thisus:[5,7],through:2,time:7,titl:[1,5,7],tool:[0,4],tough:2,track:1,train:[1,2,4],train_network:0,tri:2,two:7,type:[],typic:[2,5,7],unadvis:[],under:[],unipd:4,uniprot:5,uniqu:[1,5,7],unit:2,updat:1,usag:[5,7],use:[1,6,7],used:[2,4],useful:3,user:[1,5,6,7],uses:[2,7],using:[1,4,5,6,7],vallu:[],valu:[0,1,2,5,7],veri:[4,7],version:[3,4],view:7,wai:[1,2],want:[5,7],warn:[5,7],were:[1,2],what:[3,7],whatev:6,when:[1,5,7],where:[5,6,7],wherev:[5,7],whether:[],which:[1,5,7],whole:[],why:[1,3],within:[2,5,6,7],without:7,work:[1,2,3,7],workaround:6,would:[2,4,5,7],written:4,you:[1,2,5,6,7],your:[1,2,5,6,7]},titles:["Module Documentation","Recent changes","Getting Started with metapredict","Welcome to metapredict\u2019s documentation!","Acknowledgements","metapredict from the command-line","Metapredict isn\u2019t working!","metapredict in Python"],titleterms:{"060":1,"function":[],about:1,acid:[],acknowledg:4,amino:[],api:[],brnn_architectur:0,calcul:7,chang:1,command:5,contain:[],dataset:2,disord:[5,7],document:[0,3],encod:[],encode_sequ:0,exampl:2,fasta:7,file:7,from:[5,7],gener:7,get:2,graph:[5,7],how:2,indic:[],instal:2,isn:6,issu:6,line:5,made:2,meta_graph:0,meta_predict_disord:0,metapredict:[2,3,5,6,7],modul:0,numer:[],percent:7,predict:[5,7],python:[6,7],quickstart:[],recent:1,report:6,start:2,string:[],tabl:[],test:2,thi:[],useful:2,vector:[],version:6,welcom:3,what:2,why:2,work:6}})
\ No newline at end of file
diff --git a/docs/_build/html/usage/command-line.html b/docs/_build/html/usage/command-line.html
index 658b3e1..18e2bd3 100644
--- a/docs/_build/html/usage/command-line.html
+++ b/docs/_build/html/usage/command-line.html
@@ -92,6 +92,7 @@
- Module Documentation
- Acknowledgements
- Metapredict isn’t working!
+- Recent changes
@@ -202,6 +203,12 @@ Graphing Disorder
+Specify the lines across a graph:
+-lines
/ --line_intervals
+By default, the graphs have horizontal dashed lines at intervals of 0.2 from 0 to 1. Now, can specify the location of the dashed lines by using the -lines
/ --line_intervals
argument
+$ metapredict-graph-disorder /Users/thisUser/Desktop/interestingProteins.fasta /Users/thisUser/Desktop/DisorderGraphsFolder/ -lines 0.1 0.2 0.3 0.4 0.5
+
+
Remove non-alphabetic characters from file name:
--remove_characters
By default, the output files contain characters that are non-alphabetic (for example, predicted_disorder_sp|Q8N6T3|.png). This is not a problem on some operating systems, but others do not allow files to have names that contain certain characters. To get around this, you can add the --remove_characters
flag. This will remove all non-alphabetic characters from the .fasta header when saving the file. The previous example with the header >sp|Q8N6T3|ARFG1_HUMAN would now save as predicted_disorder_spQ8N726AR.png.
diff --git a/docs/_build/html/usage/using-in-python.html b/docs/_build/html/usage/using-in-python.html
index d45a15e..00ce810 100644
--- a/docs/_build/html/usage/using-in-python.html
+++ b/docs/_build/html/usage/using-in-python.html
@@ -94,6 +94,8 @@
Module Documentation
Acknowledgements
+Metapredict isn’t working!
+Recent changes
@@ -206,6 +208,13 @@ Graphing Disorder